summaryrefslogtreecommitdiff
path: root/lua/settings
diff options
context:
space:
mode:
authorGustaf Rydholm <gustaf.rydholm@gmail.com>2022-01-12 21:22:57 +0100
committerGustaf Rydholm <gustaf.rydholm@gmail.com>2022-01-12 21:22:57 +0100
commit3bafcbb3b39c60c670c2759b9fd28bf39c574d20 (patch)
tree434a7d63384ee3fbccfd3a79a6c65004c4333840 /lua/settings
parent7cf73775036c3424dd5e2a85effe3883cf0b0ca8 (diff)
Add nvim tree key map
Diffstat (limited to 'lua/settings')
-rw-r--r--lua/settings/keymaps.lua3
1 files changed, 3 insertions, 0 deletions
diff --git a/lua/settings/keymaps.lua b/lua/settings/keymaps.lua
index 3ad7161..3f98d19 100644
--- a/lua/settings/keymaps.lua
+++ b/lua/settings/keymaps.lua
@@ -75,3 +75,6 @@ keymap(
opts
)
keymap("n", "<c-t>", "<cmd>Telescope live_grep<cr>", opts)
+
+-- Nvimtree
+keymap("n", "<leader>e", ":NvimTreeToggle<cr>", opts)