🎨 ux(nvim): disable the footer for grapple.nvim

This commit is contained in:
Sergio Laín 2024-09-29 13:24:17 +02:00
parent 70c065f2f2
commit 32a9a48b8a
No known key found for this signature in database
GPG key ID: 8429B2EE312F8150

View file

@ -25,14 +25,14 @@ table.insert(keys, { "<C-A-h>", "<cmd>Grapple cycle backward<CR>", 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)