diff options
| author | Vito G. Graffagnino <vito@graffagnino.xyz> | 2022-06-03 17:17:42 +0100 |
|---|---|---|
| committer | Vito G. Graffagnino <vito@graffagnino.xyz> | 2022-06-03 17:17:42 +0100 |
| commit | c2635e343598a8d95d816a760572a87d30541cb2 (patch) | |
| tree | 1cdf149dd4ee9073b945e49fc296930f21420222 /lua/user/keymaps.lua | |
| parent | 30b4a7f4831f0a092d33702b7f8541b129412ea6 (diff) | |
| parent | 8fad47c3cf670bad0afd9439032c148d27ca62de (diff) | |
Merge branch '12-nvimtree' into vgg
Diffstat (limited to 'lua/user/keymaps.lua')
| -rw-r--r-- | lua/user/keymaps.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lua/user/keymaps.lua b/lua/user/keymaps.lua index c7d10c4..2827499 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) @@ -65,6 +63,8 @@ keymap("t", "<C-j>", "<C-\\><C-N><C-w>j", term_opts) keymap("t", "<C-k>", "<C-\\><C-N><C-w>k", term_opts) keymap("t", "<C-l>", "<C-\\><C-N><C-w>l", term_opts) +-- Nvimtree +keymap("n", "<leader>e", ":NvimTreeToggle<cr>", opts) -- keymap("n", "<leader>f", "<cmd>Telescope find_files<cr>", opts) keymap("n", "<leader>f", "<cmd>lua require'telescope.builtin'.find_files(require('telescope.themes').get_dropdown({ previewer = false }))<cr>", opts) keymap("n", "<c-t>", "<cmd>Telescope live_grep<cr>", opts) |
