1

我正在尝试安装Vundle,Vim 的插件管理器,我正在按照信中的说明进行操作,但要么真的遗漏了一些东西,要么我应该使用的另一种方法没有在他们的Github 存储库中提供。

步骤 1. 我在终端中执行以下操作:git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim

步骤 2. 我 cd 进入以下目录,以便编辑我的 vimrc 文件:

/usr/share/vim

根据 Vundle Github 上的第三步,我将输入以下内容:

set nocompatible              " be iMproved, required
filetype off                  " required

" set the runtime path to include Vundle and initialize
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
" alternatively, pass a path where Vundle should install plugins
"call vundle#begin('~/some/path/here')

" let Vundle manage Vundle, required
Plugin 'VundleVim/Vundle.vim'

" The following are examples of different formats supported.
" Keep Plugin commands between vundle#begin/end.
" plugin on GitHub repo
Plugin 'tpope/vim-fugitive'
" plugin from http://vim-scripts.org/vim/scripts.html
Plugin 'L9'
" Git plugin not hosted on GitHub
Plugin 'git://git.wincent.com/command-t.git'
" git repos on your local machine (i.e. when working on your own plugin)
Plugin 'file:///home/gmarik/path/to/plugin'
" The sparkup vim script is in a subdirectory of this repo called vim.
" Pass the path to set the runtimepath properly.
Plugin 'rstacruz/sparkup', {'rtp': 'vim/'}
" Avoid a name conflict with L9
Plugin 'user/L9', {'name': 'newL9'}

" All of your Plugins must be added before the following line
call vundle#end()            " required
filetype plugin indent on    " required
" To ignore plugin indent changes, instead use:
"filetype plugin on
"
" Brief help
" :PluginList       - lists configured plugins
" :PluginInstall    - installs plugins; append `!` to update or just :PluginUpdate
" :PluginSearch foo - searches for foo; append `!` to refresh local cache
" :PluginClean      - confirms removal of unused plugins; append `!` to auto-approve removal
"
" see :h vundle for more details or wiki for FAQ
" Put your non-Plugin stuff after this line
  1. 我打开一个新的终端 shell,输入Vim启动 Vim,然后运行以下命令::PluginInstall

    这就是我卡住的地方,因为我在进入 Vim 后收到此错误:PluginInstall

    E492: Not an editor command: PluginInstall

我在这里想念什么?

4

1 回答 1

2

将它放在 .vimrc 的顶部以使用 Vundle。

无论你在其中找到什么/usr/share/vim都不是的。该目录是 Vim 的系统级运行时目录,你没有任何业务可以在那里做任何事情

由于您cd在错误的目录中编辑,因此您在第 3 步之后执行的任何操作都必然会失败。

  • 第三方脚本和自定义脚本将安装在~/.vim/.

  • 自定义设置和映射将写入~/.vimrc.


/usr/share/vim如果你想让 Vim 保持稳定,你需要恢复到它的原始状态。

于 2015-08-31T21:59:46.100 回答