Keymaps Documentation
This page outlines the key mappings used in the Neovim configuration. Each mapping is listed along with its function for better clarity and usability.
🔥 Vim Basic Keymaps
Mode | Key Combination | Action | Description |
---|---|---|---|
Normal | <leader>c | :q<CR> | Closes the current Neovim window |
Normal | <leader>w | :w<CR> | Saves the current file |
Normal | <Esc><Esc> | :noh<CR> | Clears search highlighting |
Normal | <space>[ | :bprev<CR> | Moves to the previous buffer |
Normal | <space>] | :bnext<CR> | Moves to the next buffer |
Normal | <leader>q | :bd<CR> | Closes the current buffer |
Insert | <C-l> | <Esc> | Exits Insert mode |
Visual | <C-l> | <Esc> | Exits Visual mode |