1
0
mirror of https://github.com/xlogerais/config-vim synced 2024-09-19 22:29:58 +02:00

Added configuration to manage the viminfo file

This commit is contained in:
Xavier Logerais 2015-03-01 21:03:21 +01:00
parent f27c6f5536
commit 9417cc6479

10
vimrc
View File

@ -56,6 +56,16 @@ set statusline+=Position:[%l/%L\ (%p%%)]
" occasions to show status line, 2=always.
set laststatus=2
" ------[ Gestion du fichier viminfo ] ----------------------------------------------
" 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
" :100 : up to 100 lines of command-line history will be remembered
" % : saves and restores the buffer list
" n... : where to save the viminfo files
set viminfo='10,\"100,:100,%,n~/.vim/viminfo
" ------ [ Gestion de la coloration syntaxique ] ----------------------------------------------
syntax on