dotfiles/.config/nvim/lua/plugins/extras/harpoon.lua
Sergio Laín c4e8fe2941
♻️ refactor(nvim): big changes to the config structure
a lot of plugins are moving to the extra modules
all the keymaps are on the keys section of each plugin
which-key options are now dependant on the plugin they are in, etc
2023-10-20 15:01:41 +02:00

25 lines
1 KiB
Lua

return {
{
"ThePrimeagen/harpoon",
--stylua: ignore
keys = {
{ "<leader>'", function() require("harpoon.mark").add_file() end, desc = "Add File" },
{ "<leader>0", "<cmd>Telescope harpoon marks<CR>", desc = "Harpoon" },
{ "<leader>1", function() require("harpoon.ui").nav_file(1) end, desc = "File 1" },
{ "<leader>2", function() require("harpoon.ui").nav_file(2) end, desc = "File 2" },
{ "<leader>3", function() require("harpoon.ui").nav_file(3) end, desc = "File 3" },
{ "<leader>4", function() require("harpoon.ui").nav_file(4) end, desc = "File 4" },
{ "<leader>5", function() require("harpoon.ui").nav_file(5) end, desc = "File 5" },
{ "<leader>6", function() require("harpoon.ui").nav_file(6) end, desc = "File 6" },
},
opts = {
globalsettings = {
save_on_toggle = true,
enter_on_sendcmd = true,
},
},
setup = function()
require("telescope").load_extension("harpoon")
end,
},
}