-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathvimrc
439 lines (368 loc) · 11.5 KB
/
vimrc
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
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
" tabs are saved as spaces
set expandtab
" filepaths relative to the current file
set autochdir
" default tab widths
set bs=2
set tabstop=2
set shiftwidth=2
" color scheme
color summerfruit256
" smartindent only good for C
set nosmartindent
set autoindent
" specific tab widths
au FileType python setl sw=4 sts=4 et
au FileType mcs51a setl sw=3 sts=3 et
" custom file extensions
au BufNewFile,BufRead *.cpp set syntax=cpp11
au BufRead,BufNewFile *.go set filetype=go
au BufRead,BufNewFile *.go setlocal noexpandtab
au BufNewFile,BufRead *.ql set filetype=sql
au BufNewFile,BufRead *.tmpl set filetype=perl
au BufNewFile,BufRead *.dash set filetype=perl
au BufNewFile,BufRead *.alert set filetype=perl
" enable vimrc line extensions
set nocompatible
" default fold level to syntax
" set foldmethod=syntax
" set foldlevelstart=10
" all folds open by default
autocmd BufWinEnter * let &foldlevel = max(map(range(1, line('$')), 'foldlevel(v:val)'))
" enable mouse
set mouse=a
" show netrw previews in vertically split window
let g:netrw_preview = 1
" Disable Ex Mode
:nnoremap Q <Nop>
" open file under cursor in vertical split
noremap gf :vertical wincmd F<CR>
" enable spellcheck
set spell spelllang=en_us
" pressing F2 enters paste mode
set pastetoggle=<F2>
" map <F3> to YCMHover to show type information
noremap <F3> <plug>(YCMHover)
let g:ycm_auto_hover = ''
" Insert Ascii Text Headers
command! -nargs=* Header read !figlet -f starwars -k -w 60 -c <args>
" show whitespace
nnoremap S :set list!<CR>
" write to file
nnoremap W :w<CR>
" reload buffer
nnoremap E :edit!<CR>
" More intuitive movement
noremap H 10h
noremap L 10l
noremap <C-h> ^
noremap <C-l> $
noremap J 5j
noremap K 5k
noremap <C-j> 15<C-e>
noremap <C-k> 15<C-y>
" Map open directory to ctrl-d
nnoremap <C-d> :e .<CR>
" Splits open on the right
set splitright
" Files should be UTF-8 by default
set encoding=utf-8
" moar commands
:command! WQ wq
:command! Wq wq
:command! W w
:command! Q q
:command! Tabe tabe
:command! TAbe tabe
:command! TABe tabe
:command! TABE tabe
" Ctrl-t opens a new tab
:nnoremap <C-t> :tab split<CR>
:inoremap <C-t> <Esc>:tab split<CR>
" tagbar
nnoremap <F9> :TagbarToggle<CR>
let g:tagbar_width = 80
let g:tagbar_type_go = {
\ 'ctagstype' : 'go',
\ 'kinds' : [
\ 'p:package',
\ 'i:imports:1',
\ 'c:constants',
\ 'v:variables',
\ 't:types',
\ 'n:interfaces',
\ 'w:fields',
\ 'e:embedded',
\ 'm:methods',
\ 'r:constructor',
\ 'f:functions'
\ ],
\ 'sro' : '.',
\ 'kind2scope' : {
\ 't' : 'ctype',
\ 'n' : 'ntype'
\ },
\ 'scope2kind' : {
\ 'ctype' : 't',
\ 'ntype' : 'n'
\ },
\ 'ctagsbin' : 'gotags',
\ 'ctagsargs' : '-sort -silent'
\ }
" format json
nnoremap gj :%!python -m json.tool<CR>
" python with virtualenv support
" Virtualenv needs to be active when opening vim
" py3 << EOF
" import os
" import sys
" if 'VIRTUAL_ENV' in os.environ:
" project_base_dir = os.environ['VIRTUAL_ENV']
" activate_this = os.path.join(project_base_dir, 'bin/activate_this.py')
" exec(open(activate_this).read(), {'__file__': activate_this})
" EOF
" enable python highlighting
let python_highlight_all=1
" quickfix and loclist
let g:lt_location_list_toggle_map = '<leader>l'
let g:lt_quickfix_list_toggle_map = '<leader>q'
let g:lt_height = 10
noremap - :cprev<CR>
noremap = :cnext<CR>
" go to first linter error, and iterate through the errors
:nnoremap ; :lfirst<CR>
:nnoremap + :lnext<CR>
:nnoremap _ :lprev<CR>
" resize
" nnoremap + :exe "resize " . (winheight(0) * 3/2)<CR>
" nnoremap _ :exe "resize " . (winheight(0) * 2/3)<CR>
" go to next tag match
noremap ) :tn<CR>
noremap ( :tp<CR>
" autoload tag files
:set tags=./tags;
" jump backwards in the ctag stack
:nnoremap <C-p> <C-t>
" next/previous tag match
" NOTE: replaced with quicklist navigation
" :nnoremap + :tnext<CR>
" :nnoremap _ :tprevious<CR>
" disable preview split on autocomplete
:set completeopt-=preview
" fancy status line
:set statusline=%<%F\ %h%m%r%y%=%-14.(%l,%c%V%)\ %P
" search and hilight word under cursor
nnoremap * :keepjumps normal! mi*`i<CR>
" enter joins selected lines in visual mode
vnoremap <C-m> :join<CR>
" 120 character line limit python
highlight OverLength ctermbg=green ctermfg=white
autocmd FileType python 2match OverLength /\%>120v.\+/
" Press F5 to toggle highlighting on/off, and show current value.
noremap <F5> :set hlsearch! hlsearch?<CR>
set hlsearch
" Press & to switch between two related files
au FileType cpp nnoremap & :e %:p:s,.h$,.X123X,:s,.cpp$,.h,:s,.X123X$,.cpp,<CR>
au FileType html nnoremap & :e %<.js<CR>
au FileType javascript nnoremap & :e %<.html<CR>
au FileType go nnoremap & :e %:p:s,\([^_][^t][^e][^s][^t]\).go$,\1.X123X,:s,_test.go$,.go,:s,.X123X$,_test.go,<CR>
" highlight trailing whitespace
highlight ExtraWhitespace ctermbg=green ctermbg=green
match ExtraWhitespace /\s\+$/
autocmd BufWinEnter * match ExtraWhitespace /\s\+$/
autocmd InsertEnter * match ExtraWhitespace /\s\+\%#\@<!$/
autocmd InsertLeave * match ExtraWhitespace /\s\+$/
autocmd BufWinLeave * call clearmatches()
" fix bug in go-vim syntax file
let go_highlight_trailing_whitespace_error = 0
" default ycm compilation flags
let g:ycm_global_ycm_extra_conf = '~/.ycm_extra_conf.py'
" disable ycm autoconfirmation
let g:ycm_confirm_extra_conf = 0
" get identifiers from tag files
let g:ycm_collect_identifiers_from_tags_files = 1
let ycm_auto_trigger = 1
" use ycm's goto def, instead of vim's default
nnoremap gd :YcmCompleter GoTo<CR>
nnoremap gl :YcmCompleter FixIt<CR>
" ale linters
let g:ale_linters = {
\ 'python': ['flake8', 'pyright']
\}
let g:ale_fixers = {
\ 'python': [
\ 'autopep8',
\ 'autoflake',
\ 'isort',
\ 'remove_trailing_lines',
\ 'trim_whitespace',
\ 'yapf'
\ ]
\}
let g:ale_python_autopep8_options = '--ignore F811,W503,W504,E731,E125'
let g:ale_python_autoflake_options= '--ignore-init-module-imports --remove-all-unused-imports --ignore-pass-after-docstring'
let g:ale_fix_on_save = 1
nnoremap ' :ALEImport<CR>
nnoremap " :ALEFix<CR>
nnoremap <F4> :ALEStopAllLSPs<CR>:YcmRestartServer<CR>
let g:go_fmt_experimental = 1
let g:go_fmt_fail_silently = 1
let g:go_doc_keywordprg_enabled = 0
let g:go_bin_path = expand("~/bin")
let g:go_oracle_include_tests = 1
let g:go_fmt_command = "goimports"
let g:go_def_mode = "godef"
let g:go_def_mapping_enabled=0
let g:ctrlp_map = '<C-n>'
let g:ctrlp_extensions = ['tag', 'dir']
let g:ctrlp_max_files=0
let g:ctrlp_max_depth=40
let g:ctrlp_regexp = 1
let g:ctrlp_switch_buffer=0
let g:ctrlp_user_command = { 'types': { 1: ['.git', 'cd %s && git ls-files'], 2: ['.hg', 'hg --cwd %s locate -I .'], }, 'fallback': 'find %s -type f' }
" enable cscope support
set nocscopetag
set csto=1
set cscopeverbose
set cscopequickfix=s-,c-,d-,i-,t-,e-
nnoremap <C-\>s :cs find s <C-R>=expand("<cword>")<CR><CR>
nnoremap <C-\>g :cs find g <C-R>=expand("<cword>")<CR><CR>
nnoremap <C-\>c :cs find c <C-R>=expand("<cword>")<CR><CR>
nnoremap <C-\>t :cs find t <C-R>=expand("<cword>")<CR><CR>
nnoremap <C-\>e :cs find e <C-R>=expand("<cword>")<CR><CR>
nnoremap <C-\>f :cs find f <C-R>=expand("<cfile>")<CR><CR>
nnoremap <C-\>i :cs find i ^<C-R>=expand("<cfile>")<CR>$<CR>
nnoremap <C-\>d :cs find d <C-R>=expand("<cword>")<CR><CR>
function! LoadCscope()
let db = findfile("cscope.out", ".;")
if (!empty(db))
let path = strpart(db, 0, match(db, "/cscope.out$"))
set nocscopeverbose " suppress 'duplicate connection' error
exe "cs reset"
exe "cs add " . db . " " . path
set cscopeverbose
endif
endfunction
au BufEnter /* call LoadCscope()
" configure multi-key timeouts
set timeoutlen=4000
set ttimeout
set ttimeoutlen=100
" find and replace all occurances of the word under the cursor
nnoremap gs :%s/\<<C-r><C-w>\>//g<Left><Left>
" sort the selection
xnoremap s :'<,'>sort<CR>
" ctrp plugin
let g:ctrlp_map = '<C-f>'
" grep shortcuts
command! -nargs=+ Gr execute 'silent Ggrep!' <q-args> | silent! botright cwindow 15 | cc | redraw! | let @/=<q-args> | set hls
nnoremap gr :Gr <C-R>=expand("<cword>")<CR><CR>
" Rename tabs to show tab number.
" (Based on http://stackoverflow.com/questions/5927952/whats-implementation-of-vims-default-tabline-function)
if exists("+showtabline")
function! MyTabLine()
let s = ''
let wn = ''
let t = tabpagenr()
let i = 1
while i <= tabpagenr('$')
let buflist = tabpagebuflist(i)
let winnr = tabpagewinnr(i)
let s .= '%' . i . 'T'
let s .= (i == t ? '%1*' : '%2*')
let s .= ' '
let wn = tabpagewinnr(i,'$')
let s .= '%#TabNum#'
let s .= i
" let s .= '%*'
let s .= (i == t ? '%#TabLineSel#' : '%#TabLine#')
let bufnr = buflist[winnr - 1]
let file = bufname(bufnr)
let buftype = getbufvar(bufnr, 'buftype')
if buftype == 'nofile'
if file =~ '\/.'
let file = substitute(file, '.*\/\ze.', '', '')
endif
else
let file = fnamemodify(file, ':p:t')
endif
if file == ''
let file = '[No Name]'
endif
let s .= ' ' . file . ' '
let i = i + 1
endwhile
let s .= '%T%#TabLineFill#%='
let s .= (tabpagenr('$') > 1 ? '%999XX' : 'X')
return s
endfunction
set stal=2
set tabline=%!MyTabLine()
set showtabline=1
highlight link TabNum Special
endif
let g:clang_format#style_options = { "BinPackArguments" : "false", "BinPackParameters" : "false", "CommentPragmas" : ".*\\$", "Language" : "Cpp", "Standard" : "C++11"}
au BufWrite *.{cc,cpp,h} :ClangFormat
" Toggle checkboxes
fu! ToggleCB()
let line = getline('.')
if(match(line, "\\[ \\]") != -1)
let line = substitute(line, "\\[ \\]", "[x]", "")
elseif(match(line, "\\[x\\]") != -1)
let line = substitute(line, "\\[x\\]", "[ ]", "")
endif
call setline('.', line)
endf
command! ToggleCB call checkbox#ToggleCB()
nnoremap <silent> gk :ToggleCB<cr>
" CSV files
hi CSVColumnEven term=bold ctermbg=Black ctermfg=White
hi CSVColumnOdd term=bold ctermbg=Grey ctermfg=Black
" let g:csv_autocmd_arrange = 1
" let g:csv_autocmd_arrange_size = 1024*1024
let g:csv_highlight_column = 'y'
" Python document generation
" To install: ~/.vim/bundle/vim-pydocstring/lib/install.sh ~/.vim/bundle/vim-pydocstring/lib/install.sh
let g:pydocstring_formatter = 'google'
let g:pydocstring_enable_mapping = '0'
nnoremap <F10> :Pydocstring<CR>
" Git shortcuts
" :Gdiff should show side-by-side
set diffopt=vertical
:command! Diff Gdiff master
hi DiffAdd cterm=NONE ctermfg=NONE ctermbg=194
hi DiffChange cterm=NONE ctermfg=NONE ctermbg=231
hi DiffText cterm=NONE ctermfg=NONE ctermbg=189
hi DiffDelete cterm=NONE ctermfg=NONE ctermbg=224
" :Rc should open vimrc
:command! Rc :edit! ~/.vimrc
:command! Src :source ~/.vimrc
" Vundle packages
filetype off
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
Bundle 'gmarik/vundle'
Bundle 'jnwhiteh/vim-golang'
Bundle 'vim-scripts/Cpp11-Syntax-Support'
Bundle 'nvie/vim-flake8'
Bundle 'hynek/vim-python-pep8-indent'
Bundle 'tpope/vim-fugitive'
Bundle "pangloss/vim-javascript"
Bundle 'fatih/vim-go'
Bundle 'majutsushi/tagbar'
Bundle 'rodjek/vim-puppet'
Bundle 'Valloric/ListToggle'
Bundle 'rhysd/vim-clang-format'
Bundle 'chrisbra/csv.vim'
" Bundle 'vhdirk/vim-cmake'
Bundle 'ctrlpvim/ctrlp.vim'
Bundle 'powerman/vim-plugin-AnsiEsc'
Bundle 'dense-analysis/ale'
Bundle 'Valloric/YouCompleteMe'
Bundle 'heavenshell/vim-pydocstring'
Bundle 'rhysd/conflict-marker.vim'
Bundle 'pedrohdz/vim-yaml-folds'
call vundle#end()
filetype plugin on
filetype indent on
syn on