forked from KurtPreston/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitmodules
248 lines (198 loc) · 7.07 KB
/
.gitmodules
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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
###### Shell Plugins ######
# ZSH enhancements
[submodule "oh-my-zsh"]
path = oh-my-zsh
url = https://github.com/robbyrussell/oh-my-zsh.git
# Syntax highlighting for ZSH
[submodule "zsh/plugins/zsh-syntax-highlighting"]
path = zsh/plugins/zsh-syntax-highlighting
url = https://github.com/zsh-users/zsh-syntax-highlighting.git
# Improved Ctrl + R
[submodule "fzf"]
path = fzf
url = https://github.com/junegunn/fzf.git
###### Tmux Plugins #####
[submodule "tmux/plugins/tpm"]
path = tmux/plugins/tpm
url = https://github.com/tmux-plugins/tpm.git
###### VI Plugins #######
# VI plugin manager
[submodule "vim/bundle/vundle"]
path = vim/bundle/vundle
url = https://github.com/gmarik/vundle.git
# Color schemes
[submodule "vim/bundle/vimcolors"]
path = vim/bundle/vimcolors
url = https://github.com/KurtPreston/vimcolors.git
# Fancier VIM status bar
[submodule "vim/bundle/vim-rails"]
path = vim/bundle/vim-rails
url = https://github.com/tpope/vim-rails.git
# Directory tree with \nt
[submodule "vim/bundle/NERD_tree"]
path = vim/bundle/NERD_tree
url = https://github.com/scrooloose/nerdtree.git
# Show git status on nerdtree
[submodule "vim/bundle/nerdtree-git-plugin"]
path = vim/bundle/nerdtree-git-plugin
url = https://github.com/Xuyuanp/nerdtree-git-plugin.git
# Fuzzy file finder
[submodule "vim/bundle/ctrlp.vim"]
path = vim/bundle/ctrlp.vim
url = https://github.com/ctrlpvim/ctrlp.vim.git
# Autoformat Ruby / CSS /JS
[submodule "vim/bundle/vim-autoformat-rails"]
path = vim/bundle/vim-autoformat-rails
url = https://github.com/KurtPreston/vim-autoformat-rails.git
# Show recently opened files on load
[submodule "vim/bundle/vim-startify"]
path = vim/bundle/vim-startify
url = https://github.com/mhinz/vim-startify.git
# Undo tree viewing
[submodule "vim/bundle/gundo"]
path = vim/bundle/gundo
url = https://github.com/sjl/gundo.vim.git
# Fancy status bar
[submodule "vim/bundle/airline"]
path = vim/bundle/airline
url = https://github.com/bling/vim-airline.git
# Git integration
[submodule "vim/bundle/vim-fugitive"]
path = vim/bundle/vim-fugitive
url = https://github.com/tpope/vim-fugitive.git
# Highlight changed lines
[submodule "vim/bundle/vim-gitgutter"]
path = vim/bundle/vim-gitgutter
url = https://github.com/airblade/vim-gitgutter.git
# Clojure library support
[submodule "vim/bundle/vim-fireplace"]
path = vim/bundle/vim-fireplace
url = https://github.com/tpope/vim-fireplace.git
# Allow ,w to jump to next subword in variable
[submodule "vim/bundle/CamelCaseMotion"]
path = vim/bundle/CamelCaseMotion
url = https://github.com/bkad/CamelCaseMotion.git
# Automatically create 'end' when typing 'do'
[submodule "vim/bundle/vim-endwise"]
path = vim/bundle/vim-endwise
url = https://github.com/tpope/vim-endwise.git
# Rainbow parens
[submodule "vim/bundle/vim-niji"]
path = vim/bundle/vim-niji
url = https://github.com/vim-scripts/vim-niji.git
# Auto-match parens
[submodule "vim/bundle/paredit.vim"]
path = vim/bundle/paredit.vim
url = https://github.com/vim-scripts/paredit.vim.git
# Run rspec tests in VIM
[submodule "vim/bundle/ruby_focused_unit_test_vim"]
path = vim/bundle/ruby_focused_unit_test_vim
url = https://github.com/drewolson/ruby_focused_unit_test_vim.git
# Auto-comment code
[submodule "vim/bundle/tcomment"]
path = vim/bundle/tcomment
url = https://github.com/tomtom/tcomment_vim.git
# Fix period character repeat with plugins
[submodule "vim/bundle/repeat.vim"]
path = vim/bundle/repeat.vim
url = https://github.com/tpope/vim-repeat.git
# Allow terminal-style key bindings (i.e. ctrl + a)
[submodule "vim/bundle/vim-rsi"]
path = vim/bundle/vim-rsi
url = https://github.com/tpope/vim-rsi.git
# Faster loading when editing extremely large files
[submodule "vim/bundle/LargeFile"]
path = vim/bundle/LargeFile
url = https://github.com/vim-scripts/LargeFile.git
# Ability to add/remove surrounding quotes, etc.
[submodule "vim/bundle/vim-surround"]
path = vim/bundle/vim-surround
url = https://github.com/tpope/vim-surround.git
# Background process (required by tsuquyomi)
[submodule "vim/bundle/vimproc.vim"]
path = vim/bundle/vimproc.vim
url = https://github.com/Shougo/vimproc.vim.git
[submodule "vim/bundle/YouCompleteMe"]
path = vim/bundle/YouCompleteMe
url = https://github.com/Valloric/YouCompleteMe.git
# tmux integration
[submodule "vim/bundle/vim-tmux-navigator"]
path = vim/bundle/vim-tmux-navigator
url = https://github.com/christoomey/vim-tmux-navigator.git
####### VI Syntax Highlighting ########
# Asynchronous linter
[submodule "vim/bundle/ale"]
path = vim/bundle/ale
url = https://github.com/w0rp/ale.git
# Ruby syntax highlighting
[submodule "vim/bundle/vim-ruby"]
path = vim/bundle/vim-ruby
url = https://github.com/vim-ruby/vim-ruby.git
# .JST syntax highlighting support
[submodule "vim/bundle/vim-jst"]
path = vim/bundle/vim-jst
url = https://github.com/briancollins/vim-jst.git
# Less file support
[submodule "vim/bundle/vim-less"]
path = vim/bundle/vim-less
url = https://github.com/lunaru/vim-less.git
# .TS file support
[submodule "vim/bundle/typescript-vim"]
path = vim/bundle/typescript-vim
url = https://github.com/leafgarland/typescript-vim.git
# .MD markdown support
[submodule "vim/bundle/vim-markdown"]
path = vim/bundle/vim-markdown
url = https://github.com/plasticboy/vim-markdown
# Cucumber file support
[submodule "vim/bundle/vim-cucumber"]
path = vim/bundle/vim-cucumber
url = https://github.com/tpope/vim-cucumber.git
# CoffeeScript support
[submodule "vim/bundle/vim-coffee-script"]
path = vim/bundle/vim-coffee-script
url = https://github.com/kchmck/vim-coffee-script.git
# Puppet syntax
[submodule "vim/bundle/puppet-syntax-vim"]
path = vim/bundle/puppet-syntax-vim
url = https://github.com/puppetlabs/puppet-syntax-vim.git
# Handlebars (HBS file) syntax
[submodule "vim/bundle/vim-handlebars"]
path = vim/bundle/vim-handlebars
url = https://github.com/nono/vim-handlebars.git
# Jade file syntax
[submodule "vim/bundle/vim-jade"]
path = vim/bundle/vim-jade
url = https://github.com/digitaltoad/vim-jade.git
# Emblem file syntax
[submodule "vim/bundle/vim-emblem"]
path = vim/bundle/vim-emblem
url = https://github.com/heartsentwined/vim-emblem.git
# Clojure syntax support
[submodule "vim/bundle/vim-clojure-static"]
path = vim/bundle/vim-clojure-static
url = https://github.com/guns/vim-clojure-static.git
# Slim file support
[submodule "vim/bundle/vim-slim"]
path = vim/bundle/vim-slim
url = https://github.com/slim-template/vim-slim.git
# HAML / SCSS support
[submodule "vim/bundle/vim-haml"]
path = vim/bundle/vim-haml
url = https://github.com/tpope/vim-haml.git
# React JSX file support
[submodule "vim/bundle/vim-jsx"]
path = vim/bundle/vim-jsx
url = https://github.com/mxw/vim-jsx.git
# JavaScript syntax
[submodule "vim/bundle/vim-javascript"]
path = vim/bundle/vim-javascript
url = https://github.com/pangloss/vim-javascript.git
# HTML5 syntax
[submodule "vim/bundle/html5.vim"]
path = vim/bundle/html5.vim
url = https://github.com/othree/html5.vim.git
# TypeScript JSX support
[submodule "vim/bundle/vim-tsx"]
path = vim/bundle/vim-tsx
url = https://github.com/ianks/vim-tsx.git