From 7a52ddeba2a68388b544f529d2d92104420f77b0 Mon Sep 17 00:00:00 2001 From: Shipwreckt Date: Fri, 31 Oct 2025 20:02:14 +0000 Subject: Changed from static to 11ty! --- public/articals/neovim/0move.html | 65 ---------------------------- public/articals/neovim/1modes.html | 53 ----------------------- public/articals/neovim/2exitingnvim.html | 37 ---------------- public/articals/neovim/3Basic.html | 72 -------------------------------- 4 files changed, 227 deletions(-) delete mode 100644 public/articals/neovim/0move.html delete mode 100644 public/articals/neovim/1modes.html delete mode 100644 public/articals/neovim/2exitingnvim.html delete mode 100644 public/articals/neovim/3Basic.html (limited to 'public/articals/neovim') diff --git a/public/articals/neovim/0move.html b/public/articals/neovim/0move.html deleted file mode 100644 index f6810ea..0000000 --- a/public/articals/neovim/0move.html +++ /dev/null @@ -1,65 +0,0 @@ - - - - - - - Neovim index - - - - -
- -
-
-

Moving around in Neovim

-
-

Basic movements

-

Moving around in Neovim is pretty easy so this will not be a long tutorial!

-

To move around in Neovim you need to be in the 'Normal mode' where you cannot type anything.

- -

Moving around in Neovim is not that hard as you can see! It might feel weird now but the more you use Neovim the more you get used to it. Now lets move onto some of the more advanced movements.

- Tip: You can press a number and a movement key to go to where you want, for example, 4k to move four spaces up or 4j to move four spaces down. -
-

Spesific movements on words

-

These are movements on individual sentances.

- - -
-

Spesific movements

-

To go to spesific parts of the file is pretty easy.

- -
-
-

That is all now you know how to move around in Neovim!

-
-
Back   Next
-    
- - diff --git a/public/articals/neovim/1modes.html b/public/articals/neovim/1modes.html deleted file mode 100644 index 9929761..0000000 --- a/public/articals/neovim/1modes.html +++ /dev/null @@ -1,53 +0,0 @@ - - - - - - - Modes in Neovim - - - - -
- -
-
-

Neovim modes

-
-

There are three main modes in Neovim that you really need to know about.

-

Normal mode

-

Normal mode is the default mode in Neovim; it is the mode you start off in, and it allows you to enter other modes. You can also execute commands in this mode. If you are in another mode, all you need to do to enter normal mode is press the ESC key.

- -

Insert mode

-

This is probably the second-most-used mode that every person who uses Neovim uses. In this mode, it allows you to type, and that is really it!

- - Remember to exit insert mode to normal mode press ESC -

Visual mode

-

In this mode, you are allowed to select text, kind of like how you can click and drag and select this text on your web browser; this mode allows you to copy, paste, and delete the selected text!

- -
-

That is all for modes. There are a few more modes, like replace mode, that just allows you to replace a character, but these modes are not really used, at least by me.

- -
-
-
Back   Next
-    
- - diff --git a/public/articals/neovim/2exitingnvim.html b/public/articals/neovim/2exitingnvim.html deleted file mode 100644 index af1ec51..0000000 --- a/public/articals/neovim/2exitingnvim.html +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - Exiting Neovim - - - - -
- -
-
-

How to exit Neovim!

-
-

The clasic meme, how do I exit Vim?

-

There are two ways to exit Neovim; both are easy to remember. The first way to leave Neovim is to leave without saving any of the changes, and the second way is to leave while saving the changes.

- -

To people who have used Vim-based text editors, this might look strange to you because you are used to using :q and :q! And whilst those do still work, using ZZ and ZQ is way more dynamic and just smoother in the long run.

-
-
-
Back Next
-    
- - diff --git a/public/articals/neovim/3Basic.html b/public/articals/neovim/3Basic.html deleted file mode 100644 index a185cb6..0000000 --- a/public/articals/neovim/3Basic.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - - - Basic commands - - - - -
- -
-
- -

Basic Commands


- -

There are over 100 commands in Neovim, and thankfully, you don't need to know all of them to use the text editor—just a few basic commands are enough.


- -

Copy and Paste in Neovim

-

Instead of using Ctrl + C and Ctrl + V, Neovim uses y and p for copying and pasting lines:

- -
- -

Deleting Lines

- -
- -

Undo and Redo

- -
- -

Saving and Quitting

- -
- -

Searching

- -
- -
Back
-
- - -- cgit v1.2.3