vundle 管理 vim 插件

"第一步先:git clone https://github.com/gmarik/vundle.git ~/.vim/bundle/vundle
"在修改vimrc
".vimrc
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" => vundle
" git clone https://github.com/gmarik/vundle.git ~/.vim/bundle/vundle
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
set rtp+=~/.vim/bundle/vundle/
call vundle#rc()

"let Vundle manage Vundle
"required!
Bundle 'gmarik/vundle'

"My Bundles here:
"
"original repos on github

" Indent
Bundle 'Yggdroot/indentLine'

" Plugin
Bundle 'jiangmiao/auto-pairs'
Bundle 'pangloss/vim-javascript'
Bundle 'mattn/emmet-vim'
Bundle 'Shougo/neocomplcache'
  let g:neocomplcache_enable_at_startup = 1
Bundle 'The-NERD-tree'
    "------  NERDTree Options  ------
    "  当打开vim且没有文件时自动打开NERDTree
    autocmd vimenter * if !argc(  )   | NERDTree | endif
    let NERDTreeIgnore=['CVS']
    let NERDTreeChDirMode=2     "setting root dir in NT also sets VIM's cd
    noremap <silent> <Leader>n :NERDTreeToggle<CR>
    " These prevent accidentally loading files while in the NERDTree panel
    autocmd FileType nerdtree noremap <buffer> <c-left> <nop>
    autocmd FileType nerdtree noremap <buffer> <c-h> <nop>
    autocmd FileType nerdtree noremap <buffer> <c-right> <nop>
    autocmd FileType nerdtree noremap <buffer> <c-l> <nop>

"Syntax
Bundle 'jelera/vim-javascript-syntax'
  au FileType javascript call JavaScriptFold()
Bundle 'scrooloose/Syntastic'
  let g:syntastic_php_checkers = ['php', 'phpcs', 'phpmd']

"
" :Brief help
" :BundleList           -list configured bundles
" :BundleInstall(!)     - install(update) bundles
" :BundleSearch(!) foo  - search(or refresh cache first) for foo
" :BundleClean(!)       - confirm(or auto-approve) removal of unused bundles
" vundle主要就是上面这个四个命令,例如BundleInstall是全部重新安装,BundleInstall!则是更新
" 一般安装插件的流程为,先BundleSearch一个插件,然后在列表中选中,按i安装
" 安装完之后,在vimrc中,添加Bundle 'xxx'  使得bundle能够加载这个插件,同时如果
" 需要配置这个插件,也是在vimrc中设置即可
" 如果search到的安装不了,就换过来先在vimrc里添加Bundle 'xxx'
" 在去vim里执行BundleInstall来安装
" see :h vundle for more details or wiki for FAQ
" ps: comments after Bundle command are not allowed..

打开vim,然后输入:

:BundleInstall
:q(等安装完成后退出即可)


你可能感兴趣的:(vim,vimrc,vundle)