From 93df01977e52d87c2da18cf280d616026cc1577b Mon Sep 17 00:00:00 2001 From: Imbus <> Date: Sat, 3 Aug 2024 21:56:21 +0200 Subject: [PATCH] Keymap for lazy --- lua/keymaps.lua | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lua/keymaps.lua b/lua/keymaps.lua index fe1d37f..adfa3c7 100644 --- a/lua/keymaps.lua +++ b/lua/keymaps.lua @@ -11,6 +11,8 @@ vim.keymap.set('n', ']d', vim.diagnostic.goto_next, { desc = 'Go to next [D]iagn vim.keymap.set('n', 'e', vim.diagnostic.open_float, { desc = 'Show diagnostic [E]rror messages' }) vim.keymap.set('n', 'q', vim.diagnostic.setloclist, { desc = 'Open diagnostic [Q]uickfix list' }) +vim.keymap.set('n', 'l', 'Lazy', { desc = 'Lazy plugin manager' }) + -- Exit terminal mode in the builtin terminal with a shortcut that is a bit easier -- for people to discover. Otherwise, you normally need to press , which -- is not what someone will guess without a bit more experience.