diff --git a/.config/nvim/lua/_lazy.lua b/.config/nvim/lua/_lazy.lua index 0a981c5e..055fe49a 100644 --- a/.config/nvim/lua/_lazy.lua +++ b/.config/nvim/lua/_lazy.lua @@ -75,13 +75,6 @@ local plugins = { -- Colorize hex codes "NvChad/nvim-colorizer.lua", - -- Bookmark and bindings to bookmarks - { - "ThePrimeagen/harpoon", - dependencies = "nvim-lua/plenary.nvim", - branch = "harpoon2", - }, - -- Highlight comments { "folke/todo-comments.nvim", dependencies = "nvim-lua/plenary.nvim" }, diff --git a/.config/nvim/plugin/harpoon.lua b/.config/nvim/plugin/harpoon.lua deleted file mode 100644 index b64c21d9..00000000 --- a/.config/nvim/plugin/harpoon.lua +++ /dev/null @@ -1,16 +0,0 @@ -local harpoon = require("harpoon") -local map = vim.keymap.set - -harpoon:setup { - settings = { save_on_toggle = true }, -} - --- add and view -map("n", "", function() harpoon:list():add() end) -map("n", "", function() harpoon.ui:toggle_quick_menu(harpoon:list()) end) - --- switch it up! -map("n", "", function() harpoon:list():select(1) end) -map("n", "", function() harpoon:list():select(2) end) -map("n", "", function() harpoon:list():select(3) end) -map("n", "", function() harpoon:list():select(4) end)