diff --git a/.config/nvim/lua/plugins/extras/editor/arrow.lua b/.config/nvim/lua/plugins/extras/editor/arrow.lua new file mode 100644 index 00000000..02af92c4 --- /dev/null +++ b/.config/nvim/lua/plugins/extras/editor/arrow.lua @@ -0,0 +1,24 @@ +return { + { + "otavioschwanck/arrow.nvim", + event = "VeryLazy", + opts = { + show_icons = true, + }, + keys = { + { + "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, + }, +}