diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2014-08-05 09:23:25 +0200 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2014-08-05 09:23:25 +0200 |
commit | a97c876aee00af1f84d367932be0224cdfeaeecf (patch) | |
tree | 47833adaf5106d8dc40744dacb736ba6feb68259 | |
parent | a527acffe47c8a40371562224e737300af7a54e9 (diff) | |
download | vim-a97c876aee00af1f84d367932be0224cdfeaeecf.zip vim-a97c876aee00af1f84d367932be0224cdfeaeecf.tar.gz |
plugin management goes vundle
-rw-r--r-- | vimrc | 31 |
1 files changed, 30 insertions, 1 deletions
@@ -1,6 +1,35 @@ " vimrc -call pathogen#infect() + +" vundle +set nocompatible " be iMproved, required +filetype off " required + +set rtp+=~/.vim/bundle/Vundle.vim +call vundle#begin() + +Bundle 'gmarik/vundle' + +Bundle 'abudden/taghighlight-automirror' +Bundle 'altercation/vim-colors-solarized' +Bundle 'embear/vim-localvimrc' +Bundle 'jwhitley/vim-matchit' +Bundle 'majutsushi/tagbar' +Bundle 'msanders/snipmate.vim' +Bundle 'Rip-Rip/clang_complete' +Bundle 'scrooloose/nerdtree' +Bundle 'tpope/vim-commentary' +Bundle 'tpope/vim-git' +Bundle 'tpope/vim-fugitive' +Bundle 'tpope/vim-haml' +Bundle 'tpope/vim-markdown' +Bundle 'tpope/vim-repeat' +Bundle 'tpope/vim-surround' +Bundle 'vim-scripts/javacomplete' +Bundle 'vim-scripts/taglist.vim' + +call vundle#end() " required +filetype plugin indent on " required " color scheme " set t_Co=256 |