mirror of
https://github.com/kristoferssolo/SoloVim.git
synced 2025-10-21 20:10:41 +00:00
16 lines
259 B
Lua
16 lines
259 B
Lua
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,
|
|
},
|
|
}
|