安装vim-plug插件管理:
Unix
curl -fLo ~/.vim/autoload/plug.vim --create-dirs \
https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
Windows (PowerShell)
md ~\vimfiles\autoload
$uri = 'https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim'
(New-Object Net.WebClient).DownloadFile(
$uri,$ExecutionContext.SessionState.Path.GetUnresolvedProviderPathFromPSPath(
"~\vimfiles\autoload\plug.vim"
)
)
Add a vim-plug section to your ~/.vimrc :
- Begin the section with call plug#begin()
- List the plugins with Plug commands
- call plug#end() to update &runtimepath and initialize plugin system
- Automatically executes filetype plugin indent on and Syntax enable. You can revert the settings after the call. e.g. filetype indent off,Syntax off,etc.
- Reload .vimrc and :PlugInstall to install plugins.
Example: A small sensible Vim configuration
call plug#begin()
Plug 'tpope/vim-sensible'
call plug#end()
windows安装vundle插件管理
git clone https://github.com/gmarik/vundle D:@H_404_78@\Vim@H_404_78@\vimfiles@H_404_78@\bundle@H_404_78@\vundle
编辑_vimrc文件,加入
filetype off
set rtp+=$VIM/vimfiles/bundle/vundle/
call vundle#rc('$VIM/vimfiles/bundle/')
Bundle 'gmarik/vundle'
filetype plugin indent on