vimrc: add cursorline-related optimizations

This commit is contained in:
surtur 2021-11-10 01:19:45 +01:00
parent 60e8b840c4
commit 32f2bd2b79
Signed by: wanderer
GPG Key ID: 19CE1EC1D9E0486D

@ -476,6 +476,7 @@ set backspace=2
set splitbelow splitright " splits open at bottom and right
set lazyredraw " don't redraw while executing macros (good performance config)
set ttyfast
set listchars=trail:•,tab:>-
set list " show/hide tabs and EOL chars (hidden characters)
@ -531,3 +532,7 @@ set gfn=Fira\ Code\ weight=450\ 12
set ballooneval " vim8+ popups
let g:netrw_beval = 1
" cursorline optimizations
set cursorlineopt=number
syntax sync minlines=256