mirror of
https://github.com/kogakure/dotfiles.git
synced 2026-02-03 20:25:30 +00:00
64 lines
1.1 KiB
Lua
64 lines
1.1 KiB
Lua
-- Getting you where you want with the fewest keystrokes
|
|
-- https://github.com/ThePrimeagen/harpoon
|
|
return {
|
|
"ThePrimeagen/harpoon",
|
|
branch = "harpoon2",
|
|
keys = {
|
|
{
|
|
"<leader>'",
|
|
function()
|
|
require("harpoon"):list():add()
|
|
end,
|
|
desc = "Harpoon Add File",
|
|
},
|
|
{
|
|
"<leader>;",
|
|
function()
|
|
local harpoon = require("harpoon")
|
|
harpoon.ui:toggle_quick_menu(harpoon:list())
|
|
end,
|
|
desc = "Harpoon Quickmenu",
|
|
},
|
|
{
|
|
"<leader>1",
|
|
function()
|
|
require("harpoon"):list():select(1)
|
|
end,
|
|
desc = "Harpoon Buffer 1",
|
|
},
|
|
{
|
|
"<leader>2",
|
|
function()
|
|
require("harpoon"):list():select(2)
|
|
end,
|
|
desc = "Harpoon Buffer 2",
|
|
},
|
|
{
|
|
"<leader>3",
|
|
function()
|
|
require("harpoon"):list():select(3)
|
|
end,
|
|
desc = "Harpoon Buffer 3",
|
|
},
|
|
{
|
|
"<leader>4",
|
|
function()
|
|
require("harpoon"):list():select(4)
|
|
end,
|
|
desc = "Harpoon Buffer 4",
|
|
},
|
|
{
|
|
"<leader>5",
|
|
function()
|
|
require("harpoon"):list():select(5)
|
|
end,
|
|
desc = "Harpoon Buffer 5",
|
|
},
|
|
},
|
|
opts = {
|
|
menu = {
|
|
width = vim.api.nvim_win_get_width(0) - 4,
|
|
},
|
|
},
|
|
}
|