feat(nvim): add harpoonline plugin to the harpoon extra

lualine indicator for harpoon
This commit is contained in:
Sergio Laín 2024-03-19 13:01:39 +01:00
parent 917da2edae
commit 1d14e6302f
No known key found for this signature in database
GPG key ID: 14C9B8080681777B
2 changed files with 12 additions and 0 deletions

View file

@ -337,6 +337,7 @@
<summary><b>🔖 Marks</b></summary> <summary><b>🔖 Marks</b></summary>
- [ThePrimeagen/harpoon](https://dotfyle.com/plugins/ThePrimeagen/harpoon) - [ThePrimeagen/harpoon](https://dotfyle.com/plugins/ThePrimeagen/harpoon)
- [abeldekat/harpoonline](https://dotfyle.com/plugins/abeldekat/harpoonline)
- [otavioschwanck/arrow.nvim](https://dotfyle.com/plugins/otavioschwanck/arrow.nvim) - [otavioschwanck/arrow.nvim](https://dotfyle.com/plugins/otavioschwanck/arrow.nvim)
- [cbochs/grapple.nvim](https://dotfyle.com/plugins/cbochs/grapple.nvim) - [cbochs/grapple.nvim](https://dotfyle.com/plugins/cbochs/grapple.nvim)
- [tomasky/bookmarks.nvim](https://dotfyle.com/plugins/tomasky/bookmarks.nvim) - [tomasky/bookmarks.nvim](https://dotfyle.com/plugins/tomasky/bookmarks.nvim)

View file

@ -51,6 +51,17 @@ return {
end) end)
end, end,
}, },
{
"nvim-lualine/lualine.nvim",
dependencies = {
"abeldekat/harpoonline",
opts = { formatter = "short", icon = "󰛢" },
},
optional = true,
opts = function(_, opts)
table.insert(opts.sections.lualine_c, require("harpoonline").format)
end,
},
{ {
"goolord/alpha-nvim", "goolord/alpha-nvim",
optional = true, optional = true,