nvim: make <C-b> and <C-f> useful again (also mouse=extend now)
This commit is contained in:
parent
6caa81f2bf
commit
780265daa5
1 changed files with 5 additions and 0 deletions
|
@ -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 ---
|
||||
----------------------------------------------
|
||||
|
|
Loading…
Add table
Reference in a new issue