安装Vundle for VIM

时间:2015-01-03 01:36:46

标签: vim vundle

我无法安装Vundle

我按照GitHub上的说明操作;

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

这就是...... 这是cd .vim的树

├── bundle
│   └── Vundle.vim
│       ├── autoload
│       │   ├── vundle
│       │   │   ├── config.vim
│       │   │   ├── installer.vim
│       │   │   └── scripts.vim
│       │   └── vundle.vim
│       ├── changelog.md
│       ├── CONTRIBUTING.md
│       ├── doc
│       │   └── vundle.txt
│       ├── LICENSE-MIT.txt
│       ├── README.md
│       └── test
│           ├── files
│           │   └── test.erl
│           ├── minirc.vim
│           └── vimrc
└── $MYVIMRC

7个目录,13个文件

和.vimrc

set nocompatible               " be iMproved
filetype off 

为了编辑我在vim中使用的.vimrc:

:e $MYVIMRC

你能帮忙安装Vundle吗?

3 个答案:

答案 0 :(得分:20)

像@FDinoff说的那样,你错过了你应该进入的东西.vimrc

这是它的样子:

" vundle {{{1

" needed to run vundle (but i want this anyways)
set nocompatible

" vundle needs filtype plugins off
" i turn it on later
filetype plugin indent off
syntax off

" set the runtime path for vundle
set rtp+=~/.vim/bundle/Vundle.vim

" start vundle environment
call vundle#begin()

" list of plugins {{{2
" let Vundle manage Vundle (this is required)
"old: Plugin 'gmarik/Vundle.vim'
Plugin 'VundleVim/Vundle.vim'

" to install a plugin add it here and run :PluginInstall.
" to update the plugins run :PluginInstall! or :PluginUpdate
" to delete a plugin remove it here and run :PluginClean
" 

" YOUR LIST OF PLUGINS GOES HERE LIKE THIS:
Plugin 'bling/vim-airline'

" add plugins before this
call vundle#end()

" now (after vundle finished) it is save to turn filetype plugins on
filetype plugin indent on
syntax on

如果需要,您可以查看我的.vimrc。{/ 3}}。

如在评论中所述,您需要在将插件添加到.vimrc

后安装插件

安装插件的步骤

  1. .vimrccall vundle#begin()
  2. 之间将call vundle#end()添加到您.vimrc
  3. 保存<ESC>:PluginInstall<CR>
  4. 输入<ESC>:PluginInstall!<CR>
  5. 更新插件

    1. 输入<ESC>:PluginUpdate<CR>.vimrc
    2. 删除插件

      1. 将其从.vimrc
      2. 中删除
      3. 保存<ESC>:PluginClean<CR>
      4. 输入{{1}}

答案 1 :(得分:0)

我完成了@linluk描述的步骤,但当我用vim打开文件时,我看不到新安装的插件的结果。 例如,我安装了“powerline”插件,它应该在我的vim屏幕底部返回一个看起来很奇特的状态行,但是当我打开一个新文件仍然像以前一样。 唯一适用于我的插件是“YCM”(YouCompleteMe),但我无法解释为什么它适用于YCM而不适用于电力线或其他插件,如ultisnips。

答案 2 :(得分:-1)

如果您在安装Vundle时遇到问题,请按以下步骤操作:

  • 删除vim文件(例如:.vim,.vimrc等)和vundle
  • 在终端安装vundle中复制并粘贴代码

    • 如果在安装过程中出现任何问题,请按ENTER

      sh -c "$(curl -fsSL https://raw.githubusercontent.com/ets-labs/python-vimrc/master/setup.sh)"