Accidentally placed the nvim files in the wrong place, fixed now

This commit is contained in:
Kyren223
2024-06-26 19:54:00 +03:00
parent 1062f6935d
commit e3896e0738
20 changed files with 12 additions and 322 deletions

View File

@@ -0,0 +1,15 @@
vim.keymap.set('n', '<Esc>', '<cmd>nohlsearch<CR>')
vim.keymap.set('n', '<C-h>', '<C-w><C-h>', { desc = 'Move focus to the left window' })
vim.keymap.set('n', '<C-l>', '<C-w><C-l>', { desc = 'Move focus to the right window' })
vim.keymap.set('n', '<C-j>', '<C-w><C-j>', { desc = 'Move focus to the lower window' })
vim.keymap.set('n', '<C-k>', '<C-w><C-k>', { desc = 'Move focus to the upper window' })