Complete refactor + moved to [lsp-zero](https://github.com/VonHeikemen/lsp-zero.nvim)

This commit is contained in:
Kristofers Solo
2023-08-09 02:01:47 +03:00
parent 9e449312d7
commit 5871bcd430
71 changed files with 2023 additions and 2204 deletions

15
lua/plugins/harpoon.lua Normal file
View File

@@ -0,0 +1,15 @@
return {
{
"ThePrimeagen/harpoon",
opts = {},
config = function()
local ui = require("harpoon.ui")
local keymap = vim.keymap.set
for i = 1, 12, 1 do
keymap("n", "<F" .. i .. ">", function()
ui.nav_file(i)
end)
end
end,
},
}