summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrahmajit Das <brahmajit.xyz@gmail.com>2024-05-05 20:46:33 +0530
committerBrahmajit Das <brahmajit.xyz@gmail.com>2024-05-05 20:46:33 +0530
commitfaaa6c3cf54bce5b6190da8d7c6e22c85ce68214 (patch)
tree1f2eba15fc3f04c9831a0eed5cf4ec7e0e8f7b37
parentd9f2cc6d35b4cf1db0b8f7b32fdb184a60037033 (diff)
nvim: lua: keymaps: using <leader>E for NvimTree
Previously <leader>e was used but its conflicting with lsp's toggle diagnostic mapping. Signed-off-by: Brahmajit Das <brahmajit.xyz@gmail.com>
-rw-r--r--lua/keymaps.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/keymaps.lua b/lua/keymaps.lua
index 18650cd..aea065d 100644
--- a/lua/keymaps.lua
+++ b/lua/keymaps.lua
@@ -43,7 +43,7 @@ map('n', '<leader>A', ':Rg<CR>') -- FZF call ripgrep
map('n', '<leader>C', ':Commits<CR>') -- FZF show git commits
map('n', '<leader>M', ':Maps<CR>') -- FZF show normal mode mappings
-map('n', '<leader>e', ':NvimTreeToggle<CR>')
+map('n', '<leader>E', ':NvimTreeToggle<CR>')
local keymap = vim.api.nvim_set_keymap
local opts = { noremap = true, silent = true }