ubuntu16.04 vim :PlugInstall 爲什麼會拋出錯誤E492: Not an editor command: PluginInstall?

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

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章