Skip to content

Commit

Permalink
feat(plugins): add harpoon support (#101)
Browse files Browse the repository at this point in the history
* feat(plugins): add harpoon support
  • Loading branch information
trimclain authored Dec 4, 2023
1 parent 8c934ff commit ee55f32
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 1 deletion.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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` |
Expand Down
9 changes: 9 additions & 0 deletions lua/astrotheme/groups/plugins/harpoon.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
local function callback()
return {
HarpoonWindow = { link = "NormalFloat" },
HarpoonBorder = { link = "FloatBorder" },
HarpoonTitle = { link = "FloatTitle" },
}
end

return callback
1 change: 1 addition & 0 deletions lua/astrotheme/groups/plugins/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit ee55f32

Please sign in to comment.