【2B】Vi常用命令

可以保存到 ~/.vimrc 也可以在vi的命令模式下执行

"启用tab换空格
set expandtab       
"显式tab等不可见字符        
set list            
"设置Tab键为4个空格
set ts=4            
"显式行号,同set number
set nu              
"隐藏行号
set nonu            
"不换行
set nowrap          
"换行
set wrap            
"智能缩进
set autoindent      
"高亮搜索结果
set hlsearch        
"突出显式当前光标所在行
set cursorline      

"设置文件编码utf8
set fileencoding=utf8   
set fileencodings=ucs-bom,utf-8,gb18030,default
"-------------- 2014.04.15 to be continued ... ---------------------


你可能感兴趣的:(vimrc,vi配置)