Disabled fsync and enabled periodic checktime

main
Michael Mandl 2019-09-22 13:35:33 +02:00
parent 50d259267a
commit db871c9dc4
1 changed files with 10 additions and 0 deletions

View File

@ -55,6 +55,16 @@ set number
" always enable status line
set laststatus=2
" faster saving
set nofsync
" autoread/checktime timer
set autoread
function CheckTime(timer)
checktime
endfunction
let timerChecktime = timer_start(4000, 'CheckTime', {'repeat': -1})
" ctags config
set tags=./tags;
nnoremap <F2> <C-]>