✨ feat(nvim): add arrow extra (harpoon with better ui)
This commit is contained in:
parent
985860f70c
commit
c9850d1155
1 changed files with 24 additions and 0 deletions
24
.config/nvim/lua/plugins/extras/editor/arrow.lua
Normal file
24
.config/nvim/lua/plugins/extras/editor/arrow.lua
Normal file
|
@ -0,0 +1,24 @@
|
||||||
|
return {
|
||||||
|
{
|
||||||
|
"otavioschwanck/arrow.nvim",
|
||||||
|
event = "VeryLazy",
|
||||||
|
opts = {
|
||||||
|
show_icons = true,
|
||||||
|
},
|
||||||
|
keys = {
|
||||||
|
{
|
||||||
|
"<leader>h",
|
||||||
|
function()
|
||||||
|
require("arrow.ui").openMenu()
|
||||||
|
end,
|
||||||
|
desc = "Harpoon",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"nvim-lualine/lualine.nvim",
|
||||||
|
opts = function(_, opts)
|
||||||
|
table.insert(opts.sections.lualine_c, require("arrow.statusline").text_for_statusline_with_icons())
|
||||||
|
end,
|
||||||
|
},
|
||||||
|
}
|
Loading…
Add table
Reference in a new issue