taking out harpoon and adding in tabs

This commit is contained in:
Arjun Patel
2023-05-24 15:28:08 -07:00
parent 515daed4f8
commit 5114fd19cb
3 changed files with 7 additions and 15 deletions
-14
View File
@@ -1,14 +0,0 @@
local harpoon = require("harpoon")
local mark = require("harpoon.mark")
local ui = require("harpoon.ui")
harpoon.setup({
mark_branch = true,
})
vim.keymap.set("n", "<C-f>", mark.add_file)
vim.keymap.set("n", "<C-e>", ui.toggle_quick_menu)
vim.keymap.set("n", "<C-g>", function() ui.nav_file(1) end)
vim.keymap.set("n", "<C-b>", function() ui.nav_file(2) end)
vim.keymap.set("n", "<C-n>", function() ui.nav_file(3) end)