this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

[nvim] avoid fn keymaps

+5 -2
+5 -2
nvim/lua/core/keymaps.lua
··· 18 18 19 19 -- Normal -- 20 20 -- Better window navigation 21 + -- keymap("n", "<C-h>", "<C-w><C-h>", opts) 22 + -- keymap("n", "<C-j>", "<C-w><C-j>", opts) 23 + -- keymap("n", "<C-k>", "<C-w><C-k>", opts) 24 + -- keymap("n", "<C-l>", "<C-w><C-l>", opts) 21 25 22 26 -- Resize with arrows 23 27 ··· 31 35 keymap("n", "<S-Tab>", ":tabprev<CR>", opts) 32 36 keymap("n", "<leader>t", ":tabnew ", { noremap = true }) 33 37 34 - -- keymap("n", "<leader>l", ":lua ", { noremap = true }) 38 + keymap("n", "`", ":NvimTreeToggle<CR>", opts) 35 39 36 - keymap("n", "<F2>", ":NvimTreeToggle<CR>", opts) 37 40 keymap("n", "-", ":lua require('notify').dismiss()<CR>", opts) 38 41 keymap("n", "+", ":Notifications<CR>", opts) 39 42