upgrade vundle plugin and config

This commit is contained in:
Nick Nisi
2014-05-02 07:37:06 -05:00
parent d94349d6ca
commit 11c38c4120
2 changed files with 51 additions and 50 deletions

View File

@@ -1,62 +1,63 @@
filetype off
set rtp+=~/.vim/bundle/vundle/
call vundle#rc()
call vundle#begin()
" let vundle manage vundle
Bundle 'gmarik/vundle'
Plugin 'gmarik/vundle'
" utilities
Bundle 'kien/ctrlp.vim'
Bundle 'scrooloose/nerdtree'
Bundle 'mileszs/ack.vim'
Bundle 'Raimondi/delimitMate'
Bundle 'tpope/vim-commentary'
Bundle 'tpope/vim-unimpaired'
Bundle 'tpope/vim-endwise'
Bundle 'tpope/vim-ragtag'
Bundle 'tpope/vim-surround'
Bundle 'benmills/vimux'
Bundle 'bling/vim-airline'
Bundle 'scrooloose/syntastic'
Bundle 'ciaranm/detectindent'
Bundle 'tpope/vim-fugitive'
Bundle 'terryma/vim-multiple-cursors'
Bundle 'tpope/vim-repeat'
Bundle 'garbas/vim-snipmate'
Bundle 'mattn/emmet-vim'
Bundle 'editorconfig/editorconfig-vim'
Bundle "MarcWeber/vim-addon-mw-utils"
Bundle "tomtom/tlib_vim"
Bundle 'sotte/presenting.vim'
Bundle 'ervandew/supertab'
Bundle 'tpope/vim-dispatch'
Bundle 'mtth/scratch.vim'
Bundle 'itspriddle/vim-marked'
Bundle 'tpope/vim-vinegar'
Bundle 'ap/vim-css-color'
Plugin 'kien/ctrlp.vim'
Plugin 'scrooloose/nerdtree'
Plugin 'mileszs/ack.vim'
Plugin 'Raimondi/delimitMate'
Plugin 'tpope/vim-commentary'
Plugin 'tpope/vim-unimpaired'
Plugin 'tpope/vim-endwise'
Plugin 'tpope/vim-ragtag'
Plugin 'tpope/vim-surround'
Plugin 'benmills/vimux'
Plugin 'bling/vim-airline'
Plugin 'scrooloose/syntastic'
Plugin 'ciaranm/detectindent'
Plugin 'tpope/vim-fugitive'
Plugin 'terryma/vim-multiple-cursors'
Plugin 'tpope/vim-repeat'
Plugin 'garbas/vim-snipmate'
Plugin 'mattn/emmet-vim'
Plugin 'editorconfig/editorconfig-vim'
Plugin 'MarcWeber/vim-addon-mw-utils'
Plugin 'tomtom/tlib_vim'
Plugin 'sotte/presenting.vim'
Plugin 'ervandew/supertab'
Plugin 'tpope/vim-dispatch'
Plugin 'mtth/scratch.vim'
Plugin 'itspriddle/vim-marked'
Plugin 'tpope/vim-vinegar'
Plugin 'ap/vim-css-color'
" colorschemes
Bundle 'flazz/vim-colorschemes'
Bundle 'nanotech/jellybeans.vim'
Bundle 'w0ng/vim-hybrid'
Bundle 'chriskempson/base16-vim'
Plugin 'flazz/vim-colorschemes'
Plugin 'nanotech/jellybeans.vim'
Plugin 'w0ng/vim-hybrid'
Plugin 'chriskempson/base16-vim'
" languages
Bundle 'othree/html5.vim'
Bundle 'pangloss/vim-javascript'
Bundle 'tpope/vim-markdown'
Bundle 'wavded/vim-stylus'
Bundle 'groenewege/vim-less'
Bundle 'digitaltoad/vim-jade'
Bundle 'juvenn/mustache.vim'
Bundle 'moll/vim-node'
Bundle 'elzr/vim-json'
Bundle 'leafgarland/typescript-vim'
" Bundle 'jnwhiteh/vim-golang'
" Bundle 'dart-lang/dart-vim-plugin'
Bundle 'cakebaker/scss-syntax.vim'
" Bundle 'kchmck/vim-coffee-script'
Bundle 'tclem/vim-arduino'
Plugin 'othree/html5.vim'
Plugin 'pangloss/vim-javascript'
Plugin 'tpope/vim-markdown'
Plugin 'wavded/vim-stylus'
Plugin 'groenewege/vim-less'
Plugin 'digitaltoad/vim-jade'
Plugin 'juvenn/mustache.vim'
Plugin 'moll/vim-node'
Plugin 'elzr/vim-json'
Plugin 'leafgarland/typescript-vim'
" Plugin 'jnwhiteh/vim-golang'
" Plugin 'dart-lang/dart-vim-plugin'
Plugin 'cakebaker/scss-syntax.vim'
" Plugin 'kchmck/vim-coffee-script'
Plugin 'tclem/vim-arduino'
call vundle#end()
filetype plugin indent on