Adding in nvim to trackd

This commit is contained in:
talksik
2023-07-28 09:43:58 -07:00
parent fbdb849c67
commit 868a263cbd
21 changed files with 503 additions and 0 deletions
+14
View File
@@ -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)