summaryrefslogtreecommitdiff
path: root/lua/plugins/harpoon.lua
blob: 3fb4661de2a61b938864701b11a1adfe2c1d9ed0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
return {
	"theprimeagen/harpoon",
	branch = "harpoon2",
	dependencies = {
		"nvim-lua/plenary.nvim",
		"nvim-telescope/telescope.nvim",
	},
	config = function()
		-- Cd to git root on startup to retain harpoons wherever vim starts
		local function is_git_repo()
			local git_dir = vim.fn.systemlist("git rev-parse --show-toplevel")
			if vim.v.shell_error ~= 0 then
				return false
			end
			return git_dir[1]
		end

		local function cd_to_git_root()
			local git_root = is_git_repo()
			if git_root then
				vim.cmd("tcd " .. git_root)
			end
		end

		cd_to_git_root()

		local harpoon = require("harpoon")

		harpoon:setup()

		-- harpoon keybindings
		vim.keymap.set("n", "<leader>a", function()
			harpoon:list():add()
		end)
		-- vim.keymap.set("n", "<C-e>", function() toggle_telescope(harpoon:list()) end, {desc = "Open harpoon window"} )
		vim.keymap.set("n", "<C-e>", function()
			harpoon.ui:toggle_quick_menu(harpoon:list())
		end)

		vim.keymap.set("n", "<C-h>", function()
			harpoon:list():select(1)
		end)
		vim.keymap.set("n", "<C-j>", function()
			harpoon:list():select(2)
		end)
		vim.keymap.set("n", "<C-k>", function()
			harpoon:list():select(3)
		end)
		vim.keymap.set("n", "<C-l>", function()
			harpoon:list():select(4)
		end)
		vim.keymap.set("n", "<C-;>", function()
			harpoon:list():select(5)
		end)

		vim.keymap.set("n", "<C-S-P>", function()
			harpoon:list():prev()
		end)
		vim.keymap.set("n", "<C-S-N>", function()
			harpoon:list():next()
		end)
	end,
}