Vim config file

vim ~/.vimrc
------------------------------------------------------

"set color scheme
"colo murphy


"character encoding
set enc=utf-8
set fenc=utf-8

"show the line number
set number

"set auto indent
"set autoindent

"tab width
set tabstop=4

"set the font
if has("gui_running")
  set guifont=Courier\ New\ 11
endif

"high-light search result
set hlsearch

猜你喜欢

转载自metaphy.iteye.com/blog/2245243