Linux下vim的配置

  1. syntax on                   " 自动语法高亮  
  2.    
  3. colorscheme molokai         " 设定配色方案  
  4.    
  5. set number                  " 显示行号  
  6.    
  7. set cursorline              " 突出显示当前行  
  8. set ruler                   " 打开状态栏标尺  
  9.   
  10. set shiftwidth=4            " 设定 << 和 >> 命令移动时的宽度为 4  
  11.   
  12. set softtabstop=4           " 使得按退格键时可以一次删掉 4 个空格  
  13.   
  14. set tabstop=4               " 设定 tab 长度为 4  
  15.   
  16. set nobackup                " 覆盖文件时不备份  
  17.   
  18. set autochdir               " 自动切换当前目录为当前文件所在的目录  
  19.   
  20. filetype plugin indent on   " 开启插件  
  21.   
  22. set backupcopy=yes          " 设置备份时的行为为覆盖  
  23.   
  24. set ignorecase smartcase    " 搜索时忽略大小写,但在有一个或以上大写字母时仍保持对大小写敏感  
  25.   
  26. set nowrapscan              " 禁止在搜索到文件两端时重新搜索  
  27.   
  28. set incsearch               " 输入搜索内容时就显示搜索结果  
  29.   
  30. set hlsearch                " 搜索时高亮显示被找到的文本  
  31.   
  32. set noerrorbells            " 关闭错误信息响铃  
  33.   
  34. set novisualbell            " 关闭使用可视响铃代替呼叫  
  35.   
  36. set t_vb=                   " 置空错误铃声的终端代码  
  37.   
  38. " set showmatch               " 插入括号时,短暂地跳转到匹配的对应括号  
  39.   
  40. " set matchtime=2             " 短暂跳转到匹配括号的时间  
  41.   
  42. set magic                   " 设置魔术  
  43.   
  44. set hidden                  " 允许在有未保存的修改时切换缓冲区,此时的修改由 vim 负责保存  
  45.   
  46. set guioptions-=T           " 隐藏工具栏  
  47.   
  48. set guioptions-=m           " 隐藏菜单栏  
  49.   
  50. set smartindent             " 开启新行时使用智能自动缩进  
  51.   
  52. set backspace=indent,eol,start  
  53.                             " 不设定在插入状态无法用退格键和 Delete 键删除回车符  
  54.   
  55. set cmdheight=1             " 设定命令行的行数为 1  
  56.   
  57. set laststatus=2            " 显示状态栏 (默认值为 1, 无法显示状态栏)  
  58.   
  59. set statusline=\ %<%F[%1*%M%*%n%R%H]%=\ %y\ %0(%{&fileformat}\ %{&encoding}\ %c:%l/%L%)\  
  60.                             " 设置在状态行显示的信息  
  61.   
  62. set foldenable              " 开始折叠  
  63.   
  64. set foldmethod=syntax       " 设置语法折叠  
  65.   
  66. set foldcolumn=0            " 设置折叠区域的宽度  
  67.   
  68. setlocal foldlevel=1        " 设置折叠层数为  
  69.   
  70. " set foldclose=all           " 设置为自动关闭折叠                             
  71.   
  72. " nnoremap <space> @=((foldclosed(line('.')) < 0) ? 'zc' : 'zo')<CR>  
  73.                             " 用空格键来开关折叠  
  74.   
  75.   
  76.   
  77. return OS type, eg: windows, or linux, mac, et.st..  
  78.   
  79. function! MySys()  
  80.      
  81.     if has("win16") || has("win32") || has("win64") || has("win95")  
  82.         
  83.        return "windows"  
  84.     
  85.       elseif has("unix")  
  86.        
  87.         return "linux"  
  88.     
  89.     endif  
  90.   
  91. endfunction  
  92.   
  93.   
  94. " 用户目录变量$VIMFILES  
  95.   
  96.    
  97. if MySys() == "windows"  
  98.     
  99.       let $VIMFILES = $VIM.'/vimfiles'  
  100.   
  101.        elseif MySys() == "linux"  
  102.      
  103.        let $VIMFILES = $HOME.'/.vim'  
  104.   
  105.        endif  
  106.   
  107. " 设定doc文档目录  
  108.   
  109. let helptags=$VIMFILES.'/doc'  
  110.   
  111.   
  112. " 设置字体 以及中文支持  
  113.   
  114.  if has("win32")  
  115.      
  116.        set guifont=Inconsolata:h12:cANSI  
  117.   
  118.  endif  
  119.   
  120.   
  121. " 配置多语言环境  
  122.   
  123. if has("multi_byte")  
  124.     
  125.      " UTF-8 编码  
  126.      
  127. set encoding=utf-8  
  128.    
  129.   set termencoding=utf-8  
  130.    
  131.   set formatoptions+=mM  
  132.    
  133.   set fencs=utf-8,gbk  
  134.   
  135.     
  136.  if v:lang =~? '^\(zh\)\|\(ja\)\|\(ko\)'  
  137.         
  138.        set ambiwidth=double  
  139.     
  140.  endif  
  141.   
  142.      
  143. if has("win32")  
  144.         
  145.         source $VIMRUNTIME/delmenu.vim  
  146.         
  147.         source $VIMRUNTIME/menu.vim  
  148.         
  149.       language messages zh_CN.utf-8  
  150.      
  151. endif  
  152.   
  153. else  
  154.      
  155.      echoerr "Sorry, this version of (g)vim was not compiled with +multi_byte"  
  156.   
  157. endif  
  158.   
  159. "窗口分割时,进行切换的按键热键需要连接两次,比如从下方窗口移动  
  160. "光标到上方窗口,需要<c-w><c-w>k,非常麻烦,现在重映射为<c-k>,切换的  
  161. "时候会变得非常方便.  
  162. nnoremap <C-h> <C-w>h  
  163. nnoremap <C-j> <C-w>j  
  164. nnoremap <C-k> <C-w>k  
  165. nnoremap <C-l> <C-w>l  
  166.   
  167. "一些不错的映射转换语法(如果在一个文件中混合了不同语言时有用)  
  168. nnoremap <leader>1 :set filetype=xhtml<CR>  
  169. nnoremap <leader>2 :set filetype=css<CR>  
  170. nnoremap <leader>3 :set filetype=javascript<CR>  
  171. nnoremap <leader>4 :set filetype=php<CR>  
  172.   
  173. " set fileformats=unix,dos,mac  
  174. " nmap <leader>fd :se fileformat=dos<CR>  
  175. " nmap <leader>fu :se fileformat=unix<CR>  
  176.   
  177. " use Ctrl+[l|n|p|cc] to list|next|previous|jump to count the result  
  178. " map <C-x>l <ESC>:cl<CR>  
  179. " map <C-x>n <ESC>:cn<CR>  
  180. " map <C-x>p <ESC>:cp<CR>  
  181. " map <C-x>c <ESC>:cc<CR>  
  182.   
  183. " 让 Tohtml 产生有 CSS 语法的 html  
  184. " syntax/2html.vim,可以用:runtime! syntax/2html.vim  
  185. let html_use_css=1  
  186.   
  187. " Python 文件的一般设置,比如不要 tab 等  
  188. autocmd FileType python set tabstop=4 shiftwidth=4 expandtab  
  189. autocmd FileType python map <F12> :!python %<CR>  
  190.   
  191. " 选中状态下 Ctrl+c 复制  
  192. vmap <C-c> "+y  
  193.   
  194. " 打开javascript折叠  
  195. let b:javascript_fold=1  
  196. " 打开javascript对dom、html和css的支持  
  197. let javascript_enable_domhtmlcss=1  
  198. " 设置字典 ~/.vim/dict/文件的路径  
  199. autocmd filetype javascript set dictionary=$VIMFILES/dict/javascript.dict  
  200. autocmd filetype css set dictionary=$VIMFILES/dict/css.dict  
  201. autocmd filetype php set dictionary=$VIMFILES/dict/php.dict  
  202.   
  203. "-----------------------------------------------------------------  
  204. " plugin - bufexplorer.vim Buffers切换  
  205. " \be 全屏方式查看全部打开的文件列表  
  206. " \bv 左右方式查看   \bs 上下方式查看  
  207. "-----------------------------------------------------------------  
  208.   
  209.   
  210. "-----------------------------------------------------------------  
  211. " plugin - taglist.vim  查看函数列表,需要ctags程序  
  212. " F4 打开隐藏taglist窗口  
  213. "-----------------------------------------------------------------  
  214. if MySys() == "windows"                " 设定windows系统中ctags程序的位置  
  215.     let Tlist_Ctags_Cmd = '"'.$VIMRUNTIME.'/ctags.exe"'  
  216. elseif MySys() == "linux"              " 设定windows系统中ctags程序的位置  
  217.     let Tlist_Ctags_Cmd = '/usr/bin/ctags'  
  218. endif  
  219. nnoremap <silent><F4> :TlistToggle<CR>  
  220. let Tlist_Show_One_File = 1            " 不同时显示多个文件的tag,只显示当前文件的  
  221. let Tlist_Exit_OnlyWindow = 1          " 如果taglist窗口是最后一个窗口,则退出vim  
  222. let Tlist_Use_Right_Window = 1         " 在右侧窗口中显示taglist窗口  
  223. let Tlist_File_Fold_Auto_Close=1       " 自动折叠当前非编辑文件的方法列表  
  224. let Tlist_Auto_Open = 0  
  225. let Tlist_Auto_Update = 1  
  226. let Tlist_Hightlight_Tag_On_BufEnter = 1  
  227. let Tlist_Enable_Fold_Column = 0  
  228. let Tlist_Process_File_Always = 1  
  229. let Tlist_Display_Prototype = 0  
  230. let Tlist_Compact_Format = 1  
  231.   
  232.   
  233. "-----------------------------------------------------------------  
  234. " plugin - mark.vim 给各种tags标记不同的颜色,便于观看调式的插件。  
  235. " \m  mark or unmark the word under (or before) the cursor  
  236. " \r  manually input a regular expression. 用于搜索.  
  237. " \n  clear this mark (i.e. the mark under the cursor), or clear all highlighted marks .  
  238. " \*  当前MarkWord的下一个     \#  当前MarkWord的上一个  
  239. " \/  所有MarkWords的下一个    \?  所有MarkWords的上一个  
  240. "-----------------------------------------------------------------  
  241.   
  242.   
  243. "-----------------------------------------------------------------  
  244. " plugin - NERD_tree.vim 以树状方式浏览系统中的文件和目录  
  245. " :ERDtree 打开NERD_tree         :NERDtreeClose    关闭NERD_tree  
  246. " o 打开关闭文件或者目录         t 在标签页中打开  
  247. " T 在后台标签页中打开           ! 执行此文件  
  248. " p 到上层目录                   P 到根目录  
  249. " K 到第一个节点                 J 到最后一个节点  
  250. " u 打开上层目录                 m 显示文件系统菜单(添加、删除、移动操作)  
  251. " r 递归刷新当前目录             R 递归刷新当前根目录  
  252. "-----------------------------------------------------------------  
  253. " F3 NERDTree 切换  
  254. map <F3> :NERDTreeToggle<CR>  
  255. imap <F3> <ESC>:NERDTreeToggle<CR>  
  256.   
  257.   
  258.    
  259.    
  260. "-----------------------------------------------------------------  
  261. " plugin - NERD_commenter.vim   注释代码用的,  
  262. " [count],cc 光标以下count行逐行添加注释(7,cc)  
  263. " [count],cu 光标以下count行逐行取消注释(7,cu)  
  264. " [count],cm 光标以下count行尝试添加块注释(7,cm)  
  265. " ,cA 在行尾插入 /* */,并且进入插入模式。 这个命令方便写注释。  
  266. " 注:count参数可选,无则默认为选中行或当前行  
  267. "-----------------------------------------------------------------  
  268. let NERDSpaceDelims=1       " 让注释符与语句之间留一个空格  
  269. let NERDCompactSexyComs=1   " 多行注释时样子更好看  
  270.   
  271.   
  272. "-----------------------------------------------------------------  
  273. " plugin - DoxygenToolkit.vim  由注释生成文档,并且能够快速生成函数标准注释  
  274. "-----------------------------------------------------------------  
  275. let g:DoxygenToolkit_authorName="Asins - asinsimple AT gmail DOT com"  
  276. let g:DoxygenToolkit_briefTag_funcName="yes"  
  277. map <leader>da :DoxAuthor<CR>  
  278. map <leader>df :Dox<CR>  
  279. map <leader>db :DoxBlock<CR>  
  280. map <leader>dc a /*  */<LEFT><LEFT><LEFT>  
  281.   
  282.   
  283. "-----------------------------------------------------------------  
  284. " plugin – ZenCoding.vim 很酷的插件,HTML代码生成  
  285. " 插件最新版:http://github.com/mattn/zencoding-vim  
  286. " 常用命令可看:http://nootn.com/blog/Tool/23/  
  287. "-----------------------------------------------------------------  
  288.   
  289.   
  290. "-----------------------------------------------------------------  
  291. " plugin – checksyntax.vim    JavaScript常见语法错误检查  
  292. " 默认快捷方式为 F5  
  293. "-----------------------------------------------------------------  
  294. let g:checksyntax_auto = 0 " 不自动检查  
  295.   
  296.   
  297. "-----------------------------------------------------------------  
  298. " plugin - NeoComplCache.vim    自动补全插件  
  299. "-----------------------------------------------------------------  
  300. let g:AutoComplPop_NotEnableAtStartup = 1  
  301. let g:NeoComplCache_EnableAtStartup = 1  
  302. let g:NeoComplCache_SmartCase = 1  
  303. let g:NeoComplCache_TagsAutoUpdate = 1  
  304. let g:NeoComplCache_EnableInfo = 1  
  305. let g:NeoComplCache_EnableCamelCaseCompletion = 1  
  306. let g:NeoComplCache_MinSyntaxLength = 3  
  307. let g:NeoComplCache_EnableSkipCompletion = 1  
  308. let g:NeoComplCache_SkipInputTime = '0.5'  
  309. let g:NeoComplCache_SnippetsDir = $VIMFILES.'/snippets'  
  310. " <TAB> completion.  
  311. inoremap <expr><TAB> pumvisible() ? "\<C-n>" : "\<TAB>"  
  312. " snippets expand key  
  313. imap <silent> <C-e> <Plug>(neocomplcache_snippets_expand)  
  314. smap <silent> <C-e> <Plug>(neocomplcache_snippets_expand)  
  315.   
  316.   
  317. "-----------------------------------------------------------------  
  318. " plugin - matchit.vim   对%命令进行扩展使得能在嵌套标签和语句之间跳转  
  319. " % 正向匹配      g% 反向匹配  
  320. " [% 定位块首     ]% 定位块尾  
  321. "-----------------------------------------------------------------  
  322.   
  323.   
  324. "-----------------------------------------------------------------  
  325. " plugin - vcscommand.vim   对%命令进行扩展使得能在嵌套标签和语句之间跳转  
  326. " SVN/git管理工具  
  327. "-----------------------------------------------------------------  
  328.   
  329.   
  330. "-----------------------------------------------------------------  
  331. " plugin – a.vim  
  332. "-----------------------------------------------------------------[/color]
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值