diff options
author | Brahmajit Das <brahmajit.xyz@gmail.com> | 2024-05-05 20:46:33 +0530 |
---|---|---|
committer | Brahmajit Das <brahmajit.xyz@gmail.com> | 2024-05-05 20:46:33 +0530 |
commit | faaa6c3cf54bce5b6190da8d7c6e22c85ce68214 (patch) | |
tree | 1f2eba15fc3f04c9831a0eed5cf4ec7e0e8f7b37 | |
parent | d9f2cc6d35b4cf1db0b8f7b32fdb184a60037033 (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.lua | 2 |
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 } |