-
Notifications
You must be signed in to change notification settings - Fork 0
/
.vimrc.bundles
87 lines (76 loc) · 2.08 KB
/
.vimrc.bundles
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
" The next three lines ensure that the ~/.vim/bundle/ system works
filetype off
set rtp+=~/.vim/bundle/vundle
call vundle#rc()
" }
" Add an UnBundle command {
function! UnBundle(arg, ...)
let bundle = vundle#config#init_bundle(a:arg, a:000)
call filter(g:vundle#bundles, 'v:val["name_spec"] != "' . a:arg . '"')
endfunction
com! -nargs=+ UnBundle
\ call UnBundle(<args>)
" }
" Base deps
Bundle 'gmarik/vundle'
Bundle 'MarcWeber/vim-addon-mw-utils'
Bundle 'tomtom/tlib_vim'
" Theme
Bundle 'altercation/vim-colors-solarized'
Bundle 'spf13/vim-colors'
Bundle 'flazz/vim-colorschemes'
Bundle 'bling/vim-airline'
Bundle 'vim-airline/vim-airline-themes'
Bundle 'regedarek/ZoomWin'
Bundle 'chriskempson/base16-vim'
" Search
Bundle 'scrooloose/nerdtree'
Bundle 'jistr/vim-nerdtree-tabs'
Bundle 'ctrlpvim/ctrlp.vim'
Bundle 'mileszs/ack.vim'
" General editing
Bundle 'tpope/vim-surround'
Bundle 'kristijanhusak/vim-multiple-cursors'
Bundle 'matchit.zip'
Bundle 'Lokaltog/vim-easymotion'
Bundle 'mbbill/undotree'
Bundle 'osyo-manga/vim-over'
Bundle 'gcmt/wildfire.vim'
Bundle 'bkad/CamelCaseMotion'
Bundle 'benmills/vimux'
Bundle 'tpope/vim-repeat'
Bundle 'vim-scripts/gitdiff.vim'
Bundle 'godlygeek/tabular'
Bundle 'tpope/vim-vinegar'
Bundle 'tpope/vim-projectionist'
Bundle 'wikitopian/hardmode'
" General programming
Bundle 'othree/xml.vim'
Bundle 'editorconfig/editorconfig-vim'
Bundle 'airblade/vim-gitgutter'
Bundle 'scrooloose/nerdcommenter'
Bundle 'scrooloose/syntastic'
Bundle 'rizzatti/dash.vim'
" Python
Bundle 'klen/python-mode'
Bundle 'python_match.vim'
Bundle 'pitluga/vimux-nose-test'
Bundle 'alfredodeza/pytest.vim'
Bundle "lepture/vim-jinja"
" Javascript
"Bundle 'elzr/vim-json'
"Bundle 'jelera/vim-javascript-syntax'
"Bundle 'othree/javascript-libraries-syntax.vim'
Bundle 'pangloss/vim-javascript'
Bundle 'mxw/vim-jsx'
Bundle 'othree/yajs.vim'
Bundle 'gavocanov/vim-js-indent'
Bundle 'flowtype/vim-flow'
" Scala
Bundle 'derekwyatt/vim-scala'
" HTML
Bundle 'amirh/HTML-AutoCloseTag'
Bundle 'hail2u/vim-css3-syntax'
Bundle 'cakebaker/scss-syntax.vim'
Bundle 'groenewege/vim-less'
Bundle 'mattn/emmet-vim'