标签:
Vim主题的简单设置:
call pathogen#infect() syntax on"开启语法高亮 "中文支持 set fileencodings=utf-8,cp936,big5,euc-jp,euc-kr,latinl,ucs-bom set ambiwidth=double"防止特殊符号无法输出 colorscheme desert"主题风格,desert主题很不错 "Tab,缩进,删除,删除缩进,文字宽度 set smartindent set expandtab set smarttab set tabstop=4 set softabstop=4 set shiftwidth=4 set backspace=2 set textwidth=79 "启用鼠标 set mouse=a "启用行号 set nu "工具栏隐藏 set guioptions-=T "Ctrl+s自动保存 nmap <C-S> :update<CR> vmap <C-S> <C-C>:update<CR> imap <C-S> <C-O>:update<CR> "MiniBufExplorer let g:miniBufExplMapWindowNavVim = 1 let g:miniBufExplMapWindowNavArrows = 1 let g:miniBufExplMapCTabSwitchBufs = 1 let g:miniBufExplModSelTarget = 1
标签:
原文地址:http://www.cnblogs.com/magle/p/5336215.html