Vundle
Contents
Vundle¶
Vundle is a package manager for Vim Plugins.
Table of Contents¶
Installation¶
To install
git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim
and then add
set nocompatible
filetype off
" Vundle plugin manager
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
Plugin 'VundleVim/Vundle.vim'
" Add plugins here
call vundle#end()
filetype plugin indent on
to your .vimrc
.
Finalize the installation by starting vim and using the command :PluginInstall
.