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