-
Notifications
You must be signed in to change notification settings - Fork 0
/
bundles.old
executable file
·132 lines (131 loc) · 5.52 KB
/
bundles.old
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
"--------------------------------------------------------------------------------
" Information {
"--------------------------------------------------------------------------------
" vim: set sw=4 ts=4 sts=4 et tw=78 foldmarker={,} foldmethod=marker :
"
" By: Vito C.
" .ed'''' '''$$$$be.
" -' ^''**$$$e.
" .' '$$$c
" / '4$$b
" d 3 $$$$
" $ * .$$$$$$
" .$ ^c $$$$$e$$$$$$$$.
" d$L 4. 4$$$$$$$$$$$$$$b
" $$$$b ^ceeeee. 4$$ECL.F*$$$$$$$
" e$''=. $$$$P d$$$$F $ $$$$$$$$$- $$$$$$
" z$$b. ^c 3$$$F '$$$$b $'$$$$$$$ $$$$*' .=''$c
" 4$$$$L \ $$P' '$$b .$ $$$$$...e$$ .= e$$$.
" ^*$$$$$c %.. *c .. $$ 3$$$$$$$$$$eF zP d$$$$$
" '**$$$ec '\ %ce'' $$$ $$$$$$$$$$* .r' =$$$$P''
" '*$b. 'c *$e. *** d$$$$$'L$$ .d' e$$***'
" ^*$$c ^$c $$$ 4J$$$$$% $$$ .e*'.eeP'
" '$$$$$$''$=e....$*$$**$cz$$' '..d$*'
" '*$$$ *=%4.$ L L$ P3$$$F $$$P'
" '$ '%*ebJLzb$e$$$$$b $P'
" %.. 4$$$$$$$$$$ '
" $$$e z$$$$$$$$$$%
" '*$c '$$$$$$$P'
" .'''*$$$$$$$$bc
" .-' .$***$$$'''*e.
" .-' .e$' '*$c ^*b.
" .=*'''' .e$*' '*bc '*$e..
" .$' .z*' ^*$e. '*****e.
" $$ee$c .d' '*$. 3.
" ^*$E')$..$' * .ee==d%
" $.d$$$* * J$$$e*
" ''''' '$$$'
" }
"--------------------------------------------------------------------------------
" Environment {
"--------------------------------------------------------------------------------
" Basics {
set nocompatible " must be first line
set background=dark " Assume a dark background
" }
" Windows Compatible {
" On Windows, also use '.vim' instead of 'vimfiles'; this makes synchronization
" across (heterogeneous) systems easier.
if has('win32') || has('win64')
set runtimepath=$HOME/.vim,$VIM/vimfiles,$VIMRUNTIME,$VIM/vimfiles/after,$HOME/.vim/after
endif
" }
" Setup Bundle Support {
" The next three lines ensure that the ~/.vim/bundle/ system works
filetype off
set rtp+=~/.vim/bundle/vundle
call vundle#rc()
" }
" }
"--------------------------------------------------------------------------------
" Bundles {
" Deps {
Bundle 'Shougo/vimproc.vim'
"if executable('ack-grep')
" let g:ackprg="ack-grep -H --nocolor --nogroup --column"
" Bundle 'mileszs/ack.vim'
"elseif executable('ack')
" Bundle 'mileszs/ack.vim'
"elseif executable('ag')
" Bundle 'mileszs/ack.vim'
" let g:ackprg = 'ag --nogroup --nocolor --column'
"endif
" }
" General {
Bundle 'tpope/vim-repeat'
Bundle 'tpope/vim-dispatch'
Bundle 'tpope/vim-surround'
Bundle 'tpope/vim-vinegar'
"Bundle 'tpope/vim-commentary'
Bundle 'tomtom/tcomment_vim'
"Bundle 'tpope/vim-fireplace'
"Bundle 'tpope/vim-leiningen'
"Bundle 'tpope/vim-classpath'
Bundle 'tpope/vim-unimpaired'
Bundle 'tpope/vim-abolish.git'
"Bundle 'bling/vim-airline'
Bundle 'vito-c/vim-snippets'
Bundle 'xieyu/pyclewn'
Bundle 'AndrewRadev/splitjoin.vim'
Bundle 'SirVer/ultisnips'
Bundle 'spf13/vim-colors'
"Bundle 'tomtom/tcomment_vim'
Bundle 'ctrlpvim/ctrlp.vim'
"Bundle 'Lokaltog/vim-powerline'
"Bundle 'matchit.zip' "umm what's this do
Bundle 'godlygeek/csapprox'
Bundle 'flazz/vim-colorschemes'
Bundle 'simnalamburt/vim-mundo'
" }
" General Programming {
Bundle 'marijnh/tern_for_vim'
Bundle 'pangloss/vim-javascript'
Bundle 'othree/javascript-libraries-syntax.vim'
Bundle 'matthewsimo/angular-vim-snippets'
Bundle 'burnettk/vim-angular'
Bundle 'othree/html5.vim'
Bundle 'derekwyatt/vim-scala'
Bundle 'vim-scripts/Flex-4'
Bundle 'dhruvasagar/vim-table-mode'
Bundle 'terryma/vim-multiple-cursors'
Bundle 'scrooloose/syntastic'
Bundle 'vito-c/vim-pirate-scope'
"wtf does this one do
"Bundle 'mattn/webapi-vim'
Bundle 'mattn/gist-vim'
""Bundle 'scrooloose/nerdcommenter' "TODO: need a better commenter
Bundle 'godlygeek/tabular'
Bundle 'Valloric/YouCompleteMe'
Bundle 'nosami/Omnisharp'
Bundle 'Shougo/unite.vim'
"Bundle 'vim-scripts/gtags.vim'
"Bundle 'hewes/unite-gtags'
Bundle 'gmarik/vundle'
Bundle 'tommcdo/vim-exchange'
if executable('ctags')
Bundle 'majutsushi/tagbar'
endif
Bundle 'tpope/vim-fugitive'
" }
"}
"--------------------------------------------------------------------------------