summaryrefslogtreecommitdiff
path: root/nvim
diff options
context:
space:
mode:
Diffstat (limited to 'nvim')
-rw-r--r--nvim/init.lua3
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)