11月 16

vim插件安装

“git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim
“vim +PluginInstall +qall

"git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim
"vim +PluginInstall +qall
set nocompatible              " be iMproved, required
filetype off                  " required

set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
Plugin 'VundleVim/Vundle.vim'
Plugin 'tpope/vim-fugitive'
Plugin 'git://git.wincent.com/command-t.git'
Plugin 'file:///home/gmarik/path/to/plugin'
Plugin 'rstacruz/sparkup', {'rtp': 'vim/'}
Plugin 'ascenator/L9', {'name': 'newL9'}
call vundle#end()            " required
filetype plugin indent on    " required
Plugin 'flazz/vim-colorschemes'
Plugin 'vim-scripts/pep8'
Plugin 'Valloric/YouCompleteMe'
Plugin 'Lokaltog/vim-powerline'