diff --git a/after/plugin/keymaps.lua b/after/plugin/keymaps.lua index a8afef7f..e2e95507 100644 --- a/after/plugin/keymaps.lua +++ b/after/plugin/keymaps.lua @@ -67,3 +67,6 @@ keymap("n", "bw", ":Bwipeout", { desc = "[B]uffer [W]ipeout" }) -- Delete buffer except current keymap("n", "be", ":%bd|e#|bd#", { silent = true, desc = "[B]uffer Delete [E]xcept" }) + +-- Vim Be Good +keymap("n", "vbg", ":VimBeGood", { desc = "[V]im [B]e [G]ood" }) diff --git a/lua/custom/plugins/init.lua b/lua/custom/plugins/init.lua index c433512f..36ea6762 100644 --- a/lua/custom/plugins/init.lua +++ b/lua/custom/plugins/init.lua @@ -6,5 +6,6 @@ return { 'fatih/vim-go', 'mbbill/undotree', 'famiu/bufdelete.nvim', - 'ThePrimeagen/harpoon' + 'ThePrimeagen/harpoon', + 'ThePrimeagen/vim-be-good' }