leader key is set to ;.
Basic movement
^
k
<h l>
j
V
| Keymap | Function |
| h/j/k/l | Move around |
| H | Go to the first character of the line |
| L | Go to the last character of the line |
| J | Go down 5 lines |
| K | Go up 5 lines |
| W | Go 5 words forward |
| B | Go 5 words backward |
| Keymap | Function |
| Ctrl a | Act like Home |
| Ctrl e | Act like End |
| Ctrl f | Act like w in normal mode |
| Ctrl b | Act like b in normal mode |
| Keymap | Function |
| ;k | Go to the window above |
| ;j | Go to the window below |
| ;h | Go to the right window |
| ;l | Go to the left window |
| Keymap | Function |
| Alt Up | Resize the top border of window |
| Alt Down | Resize the bottom border of the window |
| Alt Left | Resize the left border of the window |
| Alt Right | Resize the right border of the window |
| Keymap | Function |
| / | Forward search |
| ? | Backward search |
| * | Search word under cursor |
| N | Go to the before matches |
| n | Go to the following matches |
| ESC | Close the search highlight |
| Keymap | Function | notes |
| y | Copy to system clipboard | |
| p | Paste from the editor register | |
| Ctrl-p | Paste from the clipboard | In normal and insert mode |
| Keymap | Function | notes |
| < | Reduce one indent level | In normal and selection mode |
| > | Increse one indent level | In normal and selection mode |
| Keymap | Function | Notes |
| ;w | Save | |
| ;q | Quit buffer (Auto quit nvim when last buffer is deleted) | |
| :q | Quit neovim, window, tabs | |
| Alt; | Leave the insert mode (Same as ESC) | Only in insert mode |
| Keymap | Function |
| Ctrl j | Scroll down |
| Ctrl k | Scroll up |
| Ctrl f | Like "PgDown" key, scroll down half a page |
| Ctrl b | Like "PgUp" key, scroll up half a page |
| Ctrl y | Scroll up, but cursor will not move |
| Ctrl e | Scroll down, but curson will not move |
| Keymap | Function |
| Ctrl-z | Reverse changes |
concept