From 4674922b2313e972e6cc0a53eb0cc4f260278ccb Mon Sep 17 00:00:00 2001 From: rootiest Date: Wed, 7 Aug 2024 08:16:29 -0400 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20feat(harpoon):=20add=20harpoon?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add Harpoon plugin to config --- lua/plugins/editor.lua | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/lua/plugins/editor.lua b/lua/plugins/editor.lua index e675046..37274df 100644 --- a/lua/plugins/editor.lua +++ b/lua/plugins/editor.lua @@ -8,6 +8,9 @@ return { { -- Dial import = "lazyvim.plugins.extras.editor.dial", }, + { -- Harpoon + import = "lazyvim.plugins.extras.editor.harpoon2", + }, { -- Illuminate import = "lazyvim.plugins.extras.editor.illuminate", }, @@ -121,18 +124,20 @@ return { require("smoothcursor").setup({}) end, }, - { + { -- Smart Scrolloff "tonymajestro/smart-scrolloff.nvim", event = "VeryLazy", opts = { scrolloff_percentage = 0.25, }, }, - { + { -- Recorder "chrisgrieser/nvim-recorder", event = "VeryLazy", dependencies = "rcarriga/nvim-notify", -- optional opts = {}, }, - { "LudoPinelli/comment-box.nvim" }, + { -- Comment Box + "LudoPinelli/comment-box.nvim", + }, }