From faaa6c3cf54bce5b6190da8d7c6e22c85ce68214 Mon Sep 17 00:00:00 2001 From: Brahmajit Das Date: Sun, 5 May 2024 20:46:33 +0530 Subject: nvim: lua: keymaps: using E for NvimTree Previously e was used but its conflicting with lsp's toggle diagnostic mapping. Signed-off-by: Brahmajit Das --- lua/keymaps.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lua') 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', 'A', ':Rg') -- FZF call ripgrep map('n', 'C', ':Commits') -- FZF show git commits map('n', 'M', ':Maps') -- FZF show normal mode mappings -map('n', 'e', ':NvimTreeToggle') +map('n', 'E', ':NvimTreeToggle') local keymap = vim.api.nvim_set_keymap local opts = { noremap = true, silent = true } -- cgit v1.2.3