vimrc: extend viminfo

This commit is contained in:
surtur 2022-10-30 04:41:47 +01:00
parent 052a7d92f1
commit 610839756c
Signed by: wanderer
SSH Key Fingerprint: SHA256:MdCZyJ2sHLltrLBp0xQO0O1qTW9BT/xl5nXkDvhlMCI

View File

@ -1201,7 +1201,13 @@ set noshowmode " show editing mode in status (-- INSERT --)
set ruler " show cursor position
set colorcolumn=80 " Highlight column 80 to get coding horizontal bound.
set noerrorbells " bells in vim
set viminfo='50,"50 " '=marks for x files, "=registers for x files
" Tell vim to remember certain things when we exit
" '10 : marks will be remembered for up to 10 previously edited files
" "100 : will save up to 100 lines for each register
" :20 : up to 20 lines of command-line history will be remembered
" % : saves and restores the buffer list
set viminfo='100,"100,:20,% " '=marks for x files, "=registers for x files
set foldmethod=manual " manual folding