Adding in nvim to trackd
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
local harpoon = require("harpoon")
|
||||
local mark = require("harpoon.mark")
|
||||
local ui = require("harpoon.ui")
|
||||
|
||||
harpoon.setup({
|
||||
mark_branch = true,
|
||||
})
|
||||
|
||||
vim.keymap.set("n", "<C-a>", 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)
|
||||
Reference in New Issue
Block a user