diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2017-01-25 15:57:41 +0100 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2017-01-25 15:57:41 +0100 |
commit | d6ac5ec94bf81a0b419f747dde4f81c6b216e354 (patch) | |
tree | b6788e2b35cec5112c94e6ef4d85c18ba82a8ca6 /vimrc | |
parent | 85eaeb952a9235260649e408e6b1326d1cddb76f (diff) | |
download | vim-d6ac5ec94bf81a0b419f747dde4f81c6b216e354.zip vim-d6ac5ec94bf81a0b419f747dde4f81c6b216e354.tar.gz |
update plugins
Diffstat (limited to 'vimrc')
-rw-r--r-- | vimrc | 48 |
1 files changed, 25 insertions, 23 deletions
@@ -10,29 +10,31 @@ set mouse-=a " disable automatic visual mode using mouse 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 'scrooloose/syntastic' -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' -Bundle 'bling/vim-airline' -Bundle 'kien/ctrlp.vim' -Bundle 'd11wtq/ctrlp_bdelete.vim' +Plugin 'VundleVim/Vundle.vim' +" Bundle 'gmarik/vundle' + +Plugin 'abudden/taghighlight-automirror' +Plugin 'altercation/vim-colors-solarized' +Plugin 'embear/vim-localvimrc' +Plugin 'jwhitley/vim-matchit' +Plugin 'majutsushi/tagbar' +Plugin 'msanders/snipmate.vim' +" Plugin 'Rip-Rip/clang_complete' +Plugin 'scrooloose/nerdtree' +Plugin 'scrooloose/syntastic' +Plugin 'tpope/vim-commentary' +Plugin 'tpope/vim-git' +Plugin 'tpope/vim-fugitive' +Plugin 'tpope/vim-haml' +Plugin 'tpope/vim-markdown' +Plugin 'tpope/vim-repeat' +Plugin 'tpope/vim-surround' +Plugin 'vim-scripts/javacomplete' +Plugin 'vim-scripts/taglist.vim' +Plugin 'bling/vim-airline' +Plugin 'vim-airline/vim-airline-themes' +Plugin 'ctrlpvim/ctrlp.vim' +Plugin 'd11wtq/ctrlp_bdelete.vim' call vundle#end() " required filetype plugin indent on " required |