aboutsummaryrefslogtreecommitdiffstats
path: root/.config/nvim/lua/plugins/harpoon.lua
diff options
context:
space:
mode:
authorSimen A. W. Olsen <so@bjerk.io>2024-05-17 09:06:35 +0200
committerSimen A. W. Olsen <so@bjerk.io>2024-05-17 09:06:35 +0200
commite0b3900d8b50b499a5527e0f6d3590649fd4cefb (patch)
tree88e03739114d539998d19495f8bc51cbc6342529 /.config/nvim/lua/plugins/harpoon.lua
parente32ffed34b37c802a2178c21b6f819104fc77730 (diff)
downloaddotfiles-e0b3900d8b50b499a5527e0f6d3590649fd4cefb.tar.gz
dotfiles-e0b3900d8b50b499a5527e0f6d3590649fd4cefb.zip
update of may
Diffstat (limited to '.config/nvim/lua/plugins/harpoon.lua')
-rw-r--r--.config/nvim/lua/plugins/harpoon.lua34
1 files changed, 0 insertions, 34 deletions
diff --git a/.config/nvim/lua/plugins/harpoon.lua b/.config/nvim/lua/plugins/harpoon.lua
deleted file mode 100644
index 797392d..0000000
--- a/.config/nvim/lua/plugins/harpoon.lua
+++ /dev/null
@@ -1,34 +0,0 @@
-return {
- "ThePrimeagen/harpoon",
- branch = "harpoon2",
- requires = {
- { "nvim-lua/plenary.nvim" },
- },
- config = function()
- local harpoon = require("harpoon")
-
- -- REQUIRED
- harpoon:setup()
- -- REQUIRED
-
- vim.keymap.set("n", "<leader>a", function()
- harpoon:list():append()
- end)
- 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)
- end,
-}