ubuntu16.04 vim :PlugInstall 为什么会抛出错误E492: Not an editor command: PluginInstall?

版权声明:本文为博主原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。
本文链接: https://blog.csdn.net/caigen0001/article/details/97039343

https://github.com/VundleVim/Vundle.vim

Vundle的安装:

git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim

~/.vimrc文件中也添加如下命令:

set nocompatible
filetype off
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
Plugin 'VundleVim/Vundle.vim'

"Plugs下面加入你需要的vim-plug
Plugin 'vim-airline/vim-airline'

call vundle#end()
filetype plugin indent on

Launch vim and run :PluginInstall

猜你喜欢

转载自blog.csdn.net/caigen0001/article/details/97039343