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.
This commit is contained in:
David Ibia
2024-01-25 14:55:45 +01:00
parent 5cceac51e0
commit be4db2a984

View File

@@ -81,4 +81,4 @@ end, opts)
-- Manage VIM Maximizer
opts.desc = "Toggle TMUX Pane"
vim.keymap.set("n", "<leader>`", "<cmd>MaximizerToggle<CR>", opts)
vim.keymap.set("n", "<leader>`", "<cmd>NvimTreeToggle<CR>", opts)