diff --git a/lua/keymaps.lua b/lua/keymaps.lua index 7658267..8364bee 100644 --- a/lua/keymaps.lua +++ b/lua/keymaps.lua @@ -43,6 +43,9 @@ vim.keymap.set('n', 'cd', ':cd ', { desc = 'Prepare CMD for [C]hange [D] -- Switch in fugitive.vim status window with the current one vim.keymap.set('n', 'gs', 'Gedit :', { desc = '[G]it [S]tatus' }) +-- Delete current buffer without closing window +vim.keymap.set('n', 'bd', 'bpspbnbd', { desc = '[B]uffer [D]elete' }) + -- [[ Basic Autocommands ]] -- See `:help lua-guide-autocommands`