💥 Reformatted neovim config
This commit is contained in:
parent
663a357e44
commit
ab7b3a65ed
13 changed files with 453 additions and 0 deletions
10
the_primeagen_nvim_setup/after/plugin/harpoon.lua
Normal file
10
the_primeagen_nvim_setup/after/plugin/harpoon.lua
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
local mark = require("harpoon.mark")
|
||||
local ui = require("harpoon.ui")
|
||||
|
||||
vim.keymap.set("n", "<leader>a", mark.add_file)
|
||||
vim.keymap.set("n", "<C-e>", ui.toggle_quick_menu)
|
||||
|
||||
vim.keymap.set("n", "<S-j>", function() ui.nav_file(1) end)
|
||||
vim.keymap.set("n", "<S-k>", function() ui.nav_file(2) end)
|
||||
vim.keymap.set("n", "<S-h>", function() ui.nav_file(3) end)
|
||||
vim.keymap.set("n", "<S-l>", function() ui.nav_file(4) end)
|
||||
Loading…
Add table
Add a link
Reference in a new issue