diff options
| author | christianchiarulli <chrisatmachine@gmail.com> | 2021-12-14 18:18:28 -0500 |
|---|---|---|
| committer | christianchiarulli <chrisatmachine@gmail.com> | 2021-12-14 18:18:28 -0500 |
| commit | 29307cb5fa34fa30d698d4ce677152aa7aebee53 (patch) | |
| tree | 337dac309d249f0d5e2aecafbf1e2ddba3480522 /lua/user/keymaps.lua | |
| parent | f667e95e5d752e8d00769ed0b5703f33cbf35640 (diff) | |
add nvimtree
Diffstat (limited to 'lua/user/keymaps.lua')
| -rw-r--r-- | lua/user/keymaps.lua | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lua/user/keymaps.lua b/lua/user/keymaps.lua index 9534dec..b4d2195 100644 --- a/lua/user/keymaps.lua +++ b/lua/user/keymaps.lua @@ -25,8 +25,6 @@ keymap("n", "<C-j>", "<C-w>j", opts) keymap("n", "<C-k>", "<C-w>k", opts) keymap("n", "<C-l>", "<C-w>l", opts) -keymap("n", "<leader>e", ":Lex 30<cr>", opts) - -- Resize with arrows keymap("n", "<C-Up>", ":resize -2<CR>", opts) keymap("n", "<C-Down>", ":resize +2<CR>", opts) @@ -72,3 +70,6 @@ keymap("t", "<C-l>", "<C-\\><C-N><C-w>l", term_opts) -- Comment keymap("n", "<leader>/", "<cmd>lua require('Comment').toggle()<CR>", opts) keymap("v", "<leader>/", ":lua require(\"Comment.api\").gc(vim.fn.visualmode())<cr>", opts) + +-- Nvimtree +keymap("n", "<leader>e", ":NvimTreeToggle<cr>", opts) |
