Add splits and fix typo in LS_COLORS

This commit is contained in:
Warren Hood 2022-11-11 16:53:20 +02:00
parent a3c80216e7
commit 7584ef0a01
2 changed files with 8 additions and 1 deletions

View file

@ -39,3 +39,7 @@ map('t', '<C-h>', '<C-\\><C-n>:wincmd h<CR>')
map('t', '<C-j>', '<C-\\><C-n>:wincmd j<CR>') map('t', '<C-j>', '<C-\\><C-n>:wincmd j<CR>')
map('t', '<C-k>', '<C-\\><C-n>:wincmd k<CR>') map('t', '<C-k>', '<C-\\><C-n>:wincmd k<CR>')
map('t', '<C-l>', '<C-\\><C-n>:wincmd l<CR>') map('t', '<C-l>', '<C-\\><C-n>:wincmd l<CR>')
-- Pane management
map('n', '<leader>sv', ':vsplit<CR>', { desc = 'Split Vertical' })
map('n', '<leader>sh', ':split<CR>', { desc = 'Split Horizontal' })

File diff suppressed because one or more lines are too long