diff --git a/lua/Judokasarin/keymaps.lua b/lua/Judokasarin/keymaps.lua index e1b2776a..d6217f37 100644 --- a/lua/Judokasarin/keymaps.lua +++ b/lua/Judokasarin/keymaps.lua @@ -35,6 +35,9 @@ vim.keymap.set('n', 'eg', 'Neotree toggle show git_status', { d vim.keymap.set('n', 'eb', 'Neotree toggle show buffers', { desc = '[e]xplorer [b]uffers' }) vim.keymap.set('n', 'ec', 'Neotree close', { desc = '[e]xplorer [b]uffers' }) -- +-- [[ Neo git ]] +vim.keymap.set('n', 'gs', 'Neogit ', { desc = '[g]it [s]tatus' }) +-- -- -- -- [[ Basic Autocommands ]] diff --git a/lua/Judokasarin/plugins/which.lua b/lua/Judokasarin/plugins/which.lua index d7ae0ed3..27ba780c 100644 --- a/lua/Judokasarin/plugins/which.lua +++ b/lua/Judokasarin/plugins/which.lua @@ -11,7 +11,8 @@ return { -- Useful plugin to show you pending keybinds. ['r'] = { name = '[R]ename', _ = 'which_key_ignore' }, ['s'] = { name = '[S]earch', _ = 'which_key_ignore' }, ['w'] = { name = '[W]orkspace', _ = 'which_key_ignore' }, - [''] = { name = '[E]xplorer', _ = 'which_key_ignore' }, + ['e'] = { name = '[E]xplorer', _ = 'which_key_ignore' }, + ['g'] = { name = '[G]it', _ = 'which_key_ignore' }, } end, }