You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
407 B
11 lines
407 B
local mark = require("harpoon.mark")
|
|
local ui = require("harpoon.ui")
|
|
|
|
vim.keymap.set("n", "<C-a>", mark.add_file)
|
|
vim.keymap.set("n", "<C-e>", ui.toggle_quick_menu)
|
|
|
|
vim.keymap.set("n", "<C-h>", function() ui.nav_file(1) end)
|
|
vim.keymap.set("n", "<C-j>", function() ui.nav_file(2) end)
|
|
vim.keymap.set("n", "<C-k>", function() ui.nav_file(3) end)
|
|
vim.keymap.set("n", "<C-l>", function() ui.nav_file(4) end)
|