aboutsummaryrefslogtreecommitdiff
path: root/.config/nvim/lua/plugins/harpoon.lua
diff options
context:
space:
mode:
authordacctal <dacctalyt@gmail.com>2026-04-19 15:58:03 +0000
committerdacctal <dacctalyt@gmail.com>2026-04-19 15:58:03 +0000
commit2e6e6d04b2c24a0666b015ef4f73718e2fe7c861 (patch)
tree51ee086d8e075d0d01ce01a1855058f95ecdf74d /.config/nvim/lua/plugins/harpoon.lua
parentd19b491454c9f793d2e311dd09f70a88240dda29 (diff)
added vis and nvim-12+ configs
Diffstat (limited to '.config/nvim/lua/plugins/harpoon.lua')
-rwxr-xr-x.config/nvim/lua/plugins/harpoon.lua26
1 files changed, 0 insertions, 26 deletions
diff --git a/.config/nvim/lua/plugins/harpoon.lua b/.config/nvim/lua/plugins/harpoon.lua
deleted file mode 100755
index 407b7f0..0000000
--- a/.config/nvim/lua/plugins/harpoon.lua
+++ /dev/null
@@ -1,26 +0,0 @@
-return {
- "thePrimeagen/harpoon",
- enabled = true,
- branch = "harpoon2",
- dependencies = {
- "nvim-lua/plenary.nvim",
- },
-
- config = function()
- local harpoon = require("harpoon")
-
- harpoon:setup({
- global_settings = {
- save_on_toggle = true,
- save_on_change = true,
- },
- })
-
- vim.keymap.set("n", "<leader>ad", function()
- harpoon:list():add()
- end, { desc = "Harpoon add file" })
- vim.keymap.set("n", "<C-e>", function()
- harpoon.ui:toggle_quick_menu(harpoon:list())
- end)
- end,
-}