From 97c76e0eedd2a9aba7fff96ba97d81222e84832a Mon Sep 17 00:00:00 2001 From: m3tam3re Date: Mon, 14 Oct 2024 12:27:51 +0200 Subject: [PATCH] +nvim lazygit keymap --- nvim/init.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nvim/init.lua b/nvim/init.lua index 4eefc3f..036073a 100644 --- a/nvim/init.lua +++ b/nvim/init.lua @@ -844,7 +844,7 @@ require('lazy').setup({ -- setting the keybinding for LazyGit with 'keys' is recommended in -- order to load the plugin when the command is run for the first time keys = { - vim.keymap.set('g', 'lg', 'LazyGit', { desc = 'LazyGit' }) + vim.keymap.set('n', 'lg', 'LazyGit', { desc = 'LazyGit' }) } }, { "olimorris/codecompanion.nvim",