nvim: add keymaps for scrolling window

This commit is contained in:
tastytea 2022-08-09 11:24:22 +02:00
parent 2c8986901f
commit cb15d8ab62
Signed by: tastytea
SSH Key Fingerprint: SHA256:FBkvrOlhq5use1XEttyUGT4bUTDVA1ar9SgIc9P03cM

View File

@ -21,3 +21,6 @@ map('n', '<M-BS>', 'db')
vim.cmd([[map! <M-BS> <C-W>]]) -- TODO: figure out how to do that with lua
map('n', '<C-Del>', 'dw')
map('i', '<C-Del>', '<C-O>dw')
map('n', '<M-Up>', '<C-y>')
map('n', '<M-Down>', '<C-e>')