29 lines
859 B
Text
29 lines
859 B
Text
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()
|
|
|
|
" let Vundle manage Vundle, required
|
|
Plugin 'VundleVim/Vundle.vim'
|
|
|
|
" Current list of plugins
|
|
Plugin 'tpope/vim-fugitive'
|
|
Plugin 'tpope/vim-vinegar'
|
|
Plugin 'bling/vim-airline'
|
|
Plugin 'justinmk/vim-sneak'
|
|
Plugin 'ap/vim-templates'
|
|
Plugin 'vimwiki/vimwiki'
|
|
|
|
call vundle#end()
|
|
|
|
" 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
|