diff --git a/README.md b/README.md index bb8bf9e..c93a94e 100644 --- a/README.md +++ b/README.md @@ -239,7 +239,8 @@ term.foreground | [dashboard-nvim](https://github.com/glepnir/dashboard-nvim) | `dashboard-nvim` | | [flash.nvim](https://github.com/folke/flash.nvim) | `flash` | | [gitsigns.nvim](https://github.com/lewis6991/gitsigns.nvim) | `gitsigns` | -| [hop.nvim](https://github.com/phaazon/hop.nvim/) | `hop` | +| [harpoon](https://github.com/ThePrimeagen/harpoon) | `harpoon` | +| [hop.nvim](https://github.com/phaazon/hop.nvim) | `hop` | | [indent_blankline.nvim](https://github.com/lukas-reineke/indent-blankline.nvim) | `indent-blankline` | | [lightspeed.nvim](https://github.com/ggandor/lightspeed.nvim) | `lightspeed` | | [lualine.nvim](https://github.com/nvim-lualine/lualine.nvim) | `lualine` | diff --git a/lua/astrotheme/groups/plugins/harpoon.lua b/lua/astrotheme/groups/plugins/harpoon.lua new file mode 100644 index 0000000..657a352 --- /dev/null +++ b/lua/astrotheme/groups/plugins/harpoon.lua @@ -0,0 +1,9 @@ +local function callback() + return { + HarpoonWindow = { link = "NormalFloat" }, + HarpoonBorder = { link = "FloatBorder" }, + HarpoonTitle = { link = "FloatTitle" }, + } +end + +return callback diff --git a/lua/astrotheme/groups/plugins/init.lua b/lua/astrotheme/groups/plugins/init.lua index 13296e5..dc66781 100644 --- a/lua/astrotheme/groups/plugins/init.lua +++ b/lua/astrotheme/groups/plugins/init.lua @@ -5,6 +5,7 @@ return { ["dashboard-nvim"] = "dashboard-nvim", ["flash.nvim"] = "flash", ["gitsigns.nvim"] = "gitsigns", + ["harpoon"] = "harpoon", ["hop.nvim"] = "hop", ["indent-blankline.nvim"] = "indent-blankline", ["neogit"] = "neogit",