为 VIM 安装 Vundle

Installing Vundle for VIM

我无法安装 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吗?

就像@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(https://github.com/linluk/my-dot-files/blob/master/vimrc)。

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

后安装插件

安装插件的步骤

  1. call vundle#begin()call vundle#end()之间.vimrc添加给你
  2. 保存.vimrc
  3. 输入<ESC>:PluginInstall<CR>

更新插件

  1. 键入 <ESC>:PluginInstall!<CR><ESC>:PluginUpdate<CR>

删除插件

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

我完全按照@linluk 描述的步骤进行操作,但是当我使用 vim 打开文件时,我没有看到新安装的插件的结果。 例如,我安装了 "powerline" 插件,它应该 return 在我的 vim 屏幕底部有一个看起来很漂亮的状态行,但是当我打开一个新文件时,它看起来仍然像以前一样。 唯一对我有用的插件是 "YCM" (YouCompleteMe),但我无法解释为什么它适用于 YCM 而不适用于 powerline 或其他插件,如 ultisnips。

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

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

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

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