nvim: make <C-b> and <C-f> useful again (also mouse=extend now)

This commit is contained in:
PowerUser64 2022-11-18 00:42:05 -08:00
parent 6caa81f2bf
commit 780265daa5

View file

@ -38,6 +38,7 @@ set.makeprg = 'make -j$(nproc)'
set.ruler = false
set.listchars = 'trail:~,tab:│ ,nbsp:␣,lead:·,extends:…,precedes:…'
set.list = false
set.mousemodel = 'extend'
----------------------------------------------
--- Key bindings (needs to be translated?) ---
@ -99,6 +100,10 @@ vim.cmd 'nnoremap <C-k> <C-w>k'
-- Spell correct with Q, rather than z=
vim.cmd 'nnoremap Q z='
-- Scroll full pages without moving the cursor (like it should!)
vim.cmd 'nnoremap  <C-u><C-u>'
vim.cmd 'nnoremap  <C-d><C-d>'
----------------------------------------------
--- Things that can't be translated to lua ---
----------------------------------------------