diff --git a/.config/nvim/lua/plugins/extras/editor/marks/grapple.lua b/.config/nvim/lua/plugins/extras/editor/marks/grapple.lua index d839d73d..ca6fb91d 100644 --- a/.config/nvim/lua/plugins/extras/editor/marks/grapple.lua +++ b/.config/nvim/lua/plugins/extras/editor/marks/grapple.lua @@ -25,14 +25,14 @@ table.insert(keys, { "", "Grapple cycle backward", desc = "Prev return { { "cbochs/grapple.nvim", - dependencies = { - "nvim-tree/nvim-web-devicons", - optional = true, - }, cmd = { "Grapple" }, keys = keys, config = function() - require("grapple").setup() + require("grapple").setup({ + win_opts = { + footer = "", + }, + }) LazyVim.on_load("telescope.nvim", function() require("telescope").load_extension("grapple") end)