feat(harpoon): add harpoon

Add Harpoon plugin to config
This commit is contained in:
2024-08-07 08:17:11 -04:00
parent e0d459de1c
commit 4674922b23
+8 -3
View File
@@ -8,6 +8,9 @@ return {
{ -- Dial { -- Dial
import = "lazyvim.plugins.extras.editor.dial", import = "lazyvim.plugins.extras.editor.dial",
}, },
{ -- Harpoon
import = "lazyvim.plugins.extras.editor.harpoon2",
},
{ -- Illuminate { -- Illuminate
import = "lazyvim.plugins.extras.editor.illuminate", import = "lazyvim.plugins.extras.editor.illuminate",
}, },
@@ -121,18 +124,20 @@ return {
require("smoothcursor").setup({}) require("smoothcursor").setup({})
end, end,
}, },
{ { -- Smart Scrolloff
"tonymajestro/smart-scrolloff.nvim", "tonymajestro/smart-scrolloff.nvim",
event = "VeryLazy", event = "VeryLazy",
opts = { opts = {
scrolloff_percentage = 0.25, scrolloff_percentage = 0.25,
}, },
}, },
{ { -- Recorder
"chrisgrieser/nvim-recorder", "chrisgrieser/nvim-recorder",
event = "VeryLazy", event = "VeryLazy",
dependencies = "rcarriga/nvim-notify", -- optional dependencies = "rcarriga/nvim-notify", -- optional
opts = {}, opts = {},
}, },
{ "LudoPinelli/comment-box.nvim" }, { -- Comment Box
"LudoPinelli/comment-box.nvim",
},
} }