From be4db2a984551c4518a1e9f677d74b2ff8b578cc Mon Sep 17 00:00:00 2001 From: David Ibia Date: Thu, 25 Jan 2024 14:55:45 +0100 Subject: [PATCH] fix(remap.lua): update keymap command to toggle NvimTree instead of Maximizer The keymap command for the leader key followed by backtick (`) has been updated to toggle the NvimTree instead of the Maximizer. This change improves the functionality of the keymap and aligns it with the desired behavior. --- lua/absolute/remap.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/absolute/remap.lua b/lua/absolute/remap.lua index 4d753a7..f28a852 100644 --- a/lua/absolute/remap.lua +++ b/lua/absolute/remap.lua @@ -81,4 +81,4 @@ end, opts) -- Manage VIM Maximizer opts.desc = "Toggle TMUX Pane" -vim.keymap.set("n", "`", "MaximizerToggle", opts) +vim.keymap.set("n", "`", "NvimTreeToggle", opts)