diff options
| author | Skladnayazebra <skladnayazebra@gmail.com> | 2025-11-02 20:07:29 +0100 |
|---|---|---|
| committer | Skladnayazebra <skladnayazebra@gmail.com> | 2025-11-02 20:07:29 +0100 |
| commit | 9139fa5484c4af413690cd3620bf02e8f72a3fe3 (patch) | |
| tree | 6f064d1bd109330f07d488c61272a7e9d7ddc169 /nvim | |
| parent | 8a24e6630236f63086602a54bae93cb2af03d266 (diff) | |
Add shortcut for lazy.nvim
Diffstat (limited to 'nvim')
| -rw-r--r-- | nvim/init.lua | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/nvim/init.lua b/nvim/init.lua index 2075aee..42553dd 100644 --- a/nvim/init.lua +++ b/nvim/init.lua @@ -11,6 +11,9 @@ vim.keymap.set('n', 'gl', vim.diagnostic.open_float, { noremap = true, silent = vim.keymap.set('n', 'gd', vim.lsp.buf.definition, { noremap = true, silent = true }) vim.keymap.set('n', 'gD', vim.lsp.buf.declaration, { noremap = true, silent = true }) +-- la - for LAzy +vim.keymap.set('n', '<leader>la', ':Lazy<CR>', { noremap = true, silent = true }) + -- Fugitive shortcuts vim.keymap.set('n', '<leader>gd', ':Gvdiffsplit<CR>', { noremap = true, silent = true }) -- opens git fugitive status in a new tab (gs is for Git Status) |
