[vim] move to Vundle
This commit is contained in:
parent
2b37f5d5e2
commit
a29453733d
1 changed files with 33 additions and 9 deletions
42
vimrc
42
vimrc
|
@ -4,21 +4,45 @@
|
||||||
" Set the location of my vim directory.
|
" Set the location of my vim directory.
|
||||||
let $VIM = $HOME."/.vim"
|
let $VIM = $HOME."/.vim"
|
||||||
|
|
||||||
" Load Pathogen to get all my plugins.
|
" Set this first for Vundle
|
||||||
try
|
set nocompatible " use enhanced vim features
|
||||||
call pathogen#infect()
|
filetype off " Needs to be off for Vundle to work (?)
|
||||||
catch
|
|
||||||
call pathogen#runtime_append_all_bundles()
|
|
||||||
endtry
|
|
||||||
call pathogen#helptags()
|
|
||||||
|
|
||||||
|
"
|
||||||
|
" VUNDLE PLUGINS
|
||||||
|
"
|
||||||
|
|
||||||
|
set rtp+=~/.vim/bundle/Vundle.vim
|
||||||
|
call vundle#begin()
|
||||||
|
|
||||||
|
Plugin 'gmarik/Vundle.vim'
|
||||||
|
|
||||||
|
" Editing helpers
|
||||||
|
Plugin 'tpope/vim-repeat'
|
||||||
|
Plugin 'tpope/vim-speeddating'
|
||||||
|
Plugin 'tpope/vim-surround'
|
||||||
|
Plugin 'tpope/vim-unimpaired'
|
||||||
|
|
||||||
|
" Documentation and completion
|
||||||
|
Plugin 'rizzatti/funcoo.vim' " Required for dash
|
||||||
|
Plugin 'rizzatti/dash.vim'
|
||||||
|
"Plugin 'valloric/YouCompleteMe'
|
||||||
|
|
||||||
|
Plugin 'sjl/gundo.vim' " Undo helper
|
||||||
|
Plugin 'scrooloose/nerdtree'
|
||||||
|
|
||||||
|
Plugin 'erynofwales/vim-fancyfolds'
|
||||||
|
|
||||||
|
" Colors~
|
||||||
|
Plugin 'altercation/vim-colors-solarized'
|
||||||
|
Plugin 'tomasr/molokai'
|
||||||
|
|
||||||
|
call vundle#end()
|
||||||
|
|
||||||
"
|
"
|
||||||
" CONFIG OPTIONS
|
" CONFIG OPTIONS
|
||||||
"
|
"
|
||||||
|
|
||||||
set nocompatible " use enhanced vim features
|
|
||||||
|
|
||||||
set autoread " reread files changed outside of vim
|
set autoread " reread files changed outside of vim
|
||||||
set noautowrite " don't write files before commands like :next and :make
|
set noautowrite " don't write files before commands like :next and :make
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue