mirror of
https://github.com/nvim-lua/kickstart.nvim.git
synced 2025-07-04 11:04:26 +02:00
done maybe
This commit is contained in:
parent
d00f77555e
commit
c54b71fdd4
24 changed files with 2632 additions and 501 deletions
50
lua/custom/keybinding_cheatsheet.md
Normal file
50
lua/custom/keybinding_cheatsheet.md
Normal file
|
@ -0,0 +1,50 @@
|
|||
# Neovim Keybinding Cheatsheet
|
||||
|
||||
## General
|
||||
|
||||
| Key | Mode | Description |
|
||||
| ----------- | ---- | ----------------------- |
|
||||
| `<leader>w` | n | Save file |
|
||||
| `<leader>q` | n | Quit |
|
||||
| `<leader>Q` | n | Force quit all |
|
||||
| `<leader>W` | n | Save and quit |
|
||||
| `<leader>/` | n | Clear search highlights |
|
||||
| `<Esc>` | n | Clear highlights |
|
||||
|
||||
## Navigation
|
||||
|
||||
### Window Navigation
|
||||
|
||||
| Key | Mode | Description |
|
||||
| ------- | ---- | -------------------- |
|
||||
| `<C-h>` | n | Move to left window |
|
||||
| `<C-j>` | n | Move to lower window |
|
||||
| `<C-k>` | n | Move to upper window |
|
||||
| `<C-l>` | n | Move to right window |
|
||||
|
||||
### Window Management (`<leader>w`)
|
||||
|
||||
| Key | Mode | Description |
|
||||
| ------------ | ---- | ------------------------- |
|
||||
| `<leader>wv` | n | Split window vertically |
|
||||
| `<leader>ws` | n | Split window horizontally |
|
||||
| `<leader>wq` | n | Close current window |
|
||||
| `<leader>wo` | n | Close other windows |
|
||||
| `<leader>wh` | n | Go to left window |
|
||||
| `<leader>wj` | n | Go to lower window |
|
||||
| `<leader>wk` | n | Go to upper window |
|
||||
| `<leader>wl` | n | Go to right window |
|
||||
|
||||
### Window Resizing
|
||||
|
||||
| Key | Mode | Description |
|
||||
| ----------- | ---- | ---------------------- |
|
||||
| `<M-Up>` | n | Increase window height |
|
||||
| `<M-Down>` | n | Decrease window height |
|
||||
| `<M-Left>` | n | Decrease window width |
|
||||
| `<M-Right>` | n | Increase window width |
|
||||
|
||||
### Tab Management (`<leader>t`)
|
||||
|
||||
| Key | Mode | Description |
|
||||
| --- | ---- | ----------- |
|
Loading…
Add table
Add a link
Reference in a new issue