forked from jshafton/vimfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvim-plug.vim
More file actions
195 lines (157 loc) · 4.22 KB
/
vim-plug.vim
File metadata and controls
195 lines (157 loc) · 4.22 KB
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
set nocompatible " be iMproved
filetype off " required!
" documentation here --
" https://github.com/junegunn/vim-plug/
call plug#begin()
" Colors
Plug 'godlygeek/csapprox'
" Git and related
Plug 'tpope/vim-fugitive'
Plug 'gregsexton/gitv'
Plug 'idanarye/vim-merginal'
Plug 'tpope/vim-rhubarb'
" Buffer/file browsing
Plug 'ctrlpvim/ctrlp.vim'
Plug 'junegunn/fzf', { 'dir': '~/.fzf', 'do': './install --bin' }
Plug 'junegunn/fzf.vim'
Plug 'dhruvasagar/vim-vinegar'
Plug 'scrooloose/nerdtree'
Plug 'duff/vim-bufonly'
Plug 'vim-scripts/bufkill.vim'
" Language pack bundles
Plug 'sheerun/vim-polyglot'
Plug 'mattn/emmet-vim'
Plug 'elixir-lang/vim-elixir'
Plug 'dpwright/vim-tup'
Plug 'leafo/moonscript-vim'
Plug 'jshafton/vim-node'
Plug 'robbles/logstash.vim'
Plug 'Glench/Vim-Jinja2-Syntax'
Plug 'gabrielelana/vim-markdown'
" Linter
Plug 'w0rp/ale'
" UI enhancements
Plug 'vim-scripts/quickfixsigns'
Plug 'nathanaelkane/vim-indent-guides'
Plug 'miyakogi/conoline.vim'
Plug 'szw/vim-maximizer'
" General text editing, delimiter pairing
Plug 'tpope/vim-surround'
Plug 'tpope/vim-unimpaired'
Plug 'tpope/vim-endwise'
Plug 'tpope/vim-repeat'
Plug 'Raimondi/delimitMate'
Plug 'vim-scripts/Align'
Plug 'junegunn/vim-easy-align'
Plug 'vim-scripts/transpose-words'
Plug 'vim-scripts/ReplaceWithRegister'
Plug 'junegunn/vim-peekaboo'
Plug 'tommcdo/vim-exchange'
Plug 'sk1418/Join'
Plug 'junegunn/rainbow_parentheses.vim'
" Better matching with %
Plug 'vim-scripts/matchit.zip'
Plug 'vim-scripts/ruby-matchit'
" Commenting, auto-completion, general syntax
Plug 'vim-scripts/tComment'
Plug 'scrooloose/syntastic'
" Mark-down
Plug 'timcharper/textile.vim'
" General ruby
Plug 'tpope/vim-bundler'
Plug 'tpope/vim-rbenv'
Plug 'ngmy/vim-rubocop'
" Web development
Plug 'tpope/vim-rails'
Plug 'hallison/vim-ruby-sinatra'
Plug 'cakebaker/scss-syntax.vim'
Plug 'Valloric/MatchTagAlways'
" Badass undo history
Plug 'sjl/gundo.vim'
" Quick intra-buffer navigation
Plug 'Lokaltog/vim-easymotion'
Plug 'haya14busa/vim-easyoperator-phrase'
Plug 'haya14busa/vim-easyoperator-line'
" Paste history
Plug 'bfredl/nvim-miniyank'
" Text selection
Plug 'kana/vim-textobj-user'
" ar, ir
Plug 'nelstrom/vim-textobj-rubyblock'
" aa, ia
Plug 'vim-scripts/argtextobj.vim'
" ae, ie
Plug 'kana/vim-textobj-entire'
" a/, i/, a?, i?
Plug 'kana/vim-textobj-lastpat'
" al, il
Plug 'kana/vim-textobj-line'
" ai, ii, aI, iI
Plug 'kana/vim-textobj-indent'
" a_, i_
Plug 'lucapette/vim-textobj-underscore'
" looser searching for text objects
Plug 'paradigm/TextObjectify'
" Movement through camel case and snake case words
Plug 'bkad/CamelCaseMotion'
" Code searching
Plug 'mileszs/ack.vim'
Plug 'rking/ag.vim'
Plug 'gabesoft/vim-ags'
Plug 'vim-scripts/AutoTag'
Plug 'tpope/vim-abolish'
Plug 'osyo-manga/vim-over'
" SQL
Plug 'vim-scripts/dbext.vim'
Plug 'exu/pgsql.vim'
" DevOps
" Plug 'chase/vim-ansible-yaml'
Plug 'pearofducks/ansible-vim'
Plug 'sclo/haproxy.vim'
" Windows shit
Plug 'PProvost/vim-ps1'
" Misc junk
Plug 'ciaranm/securemodelines'
" Random shell helper commands
Plug 'tpope/vim-eunuch'
" Session management
Plug 'tpope/vim-obsession'
" Vim window management
Plug 'milkypostman/vim-togglelist'
Plug 'christoomey/vim-tmux-navigator'
" Async command execution
Plug 'tpope/vim-dispatch'
" Mac-only bundles
let os=substitute(system('uname'), '\n', '', '')
if os == 'Darwin' || os == 'Mac'
" note taking
Plug 'xolox/vim-misc'
Plug 'xolox/vim-notes'
Plug 'vimwiki/vimwiki'
" awesome (but complicated) tab completion
if v:version > 703
Plug 'Valloric/YouCompleteMe', { 'do': './install.py' }
endif
" Look up stuff in Dash / the internets
Plug 'Keithbsmiley/investigate.vim'
" Required for gist interaction
Plug 'mattn/webapi-vim'
" Upload stuff to gisthub.com
Plug 'mattn/gist-vim'
" ui enhancements
Plug 'vim-airline/vim-airline'
Plug 'vim-airline/vim-airline-themes'
" edit OSX plist files
Plug 'darfink/vim-plist'
endif
if has('nvim')
Plug 'NLKNguyen/papercolor-theme'
endif
call plug#end()
let s:pluggedTracker = resolve(expand("~/.vim-plug-first-run"))
if !filereadable(s:pluggedTracker)
echo "Installing Plugins for first time, please ignore key map error messages"
echo ""
:PlugInstall
:call system('touch ' . s:pluggedTracker)
endif