"Under the directory/etc/, there is a file called VIMRC,
"This is a public vim profile in the system and is valid for all users." And in each user's main
Directory, you can set up your own private configuration file, named:. VIMRC
"Cancel Automatic annotation
Au FileType c,cpp setlocal comments-=://comments+=f://
The Set encoding support
Let &termencoding=&encoding
Set fileencodings=utf-8,gbk,gb2312,ucs-bom,cp936
The syntax highlights
Syntax on
"Sets the tab-position character length
Set tabstop=4
Set shiftwidth=4
The Set automatic alignment
Set Cindent
Set Cinoptions={0,1s,t0,n-2,p2s, (03s,=.5s,>1s,=1s,:1s
"Suppress line number display
Set Nonu
"Set line number display
Set Nu
If &term== "Xterm"
Set T_co=8
Set T_SB=^[[4%DM
Set T_SF=^[[3%DM
endif
The set cursor is in the most recently modified row
If has ("Autocmd")
Au bufreadpost * If line ("'/") > 1 && Line ("" ") <= Line (" $ ") | EXE "normal! G ' \ ' "| endif
endif