From 32a9a48b8a4e76189f6a52a7d96bae8590bd859b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sergio=20La=C3=ADn?= Date: Sun, 29 Sep 2024 13:24:17 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=8E=A8=20ux(nvim):=20disable=20the=20foot?= =?UTF-8?q?er=20for=20grapple.nvim?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../nvim/lua/plugins/extras/editor/marks/grapple.lua | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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)