-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvimrc
830 lines (685 loc) · 22.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
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
let s:vim_config_dir = expand('~/.vim')
let s:vim_plug_script = s:vim_config_dir . '/autoload/plug.vim'
if !filereadable(s:vim_plug_script)
execute '!curl -fL https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim --create-dirs -o' shellescape(s:vim_plug_script)
augroup AUGPlugInstall
autocmd VimEnter * PlugInstall --sync
augroup END
endif
if has('nvim')
call plug#begin('~/.local/share/nvim/plugged')
else
call plug#begin('~/.vim/bundle')
endif
if !has('mac')
Plug 'KabbAmine/zeavim.vim'
endif
" Completion, task, etc
" Plug 'jiangmiao/auto-pairs'
Plug 'Krasjet/auto.pairs'
Plug 'honza/vim-snippets'
Plug 'junegunn/fzf', { 'dir': '~/.fzf', 'do': './install --all' }
Plug 'junegunn/fzf.vim'
Plug 'fszymanski/fzf-quickfix'
Plug 'chengzeyi/fzf-preview.vim'
Plug 'andymass/vim-matchup'
Plug 'ervandew/supertab'
Plug 'easymotion/vim-easymotion'
" Tag management
" Plug 'ludovicchabant/vim-gutentags'
Plug 'skywind3000/asyncrun.vim'
" Plug 'skywind3000/vim-preview'
Plug 'majutsushi/tagbar'
" Javascript
Plug 'elzr/vim-json'
Plug 'othree/yajs.vim'
Plug 'posva/vim-vue'
Plug 'jelera/vim-javascript-syntax'
" C C++
Plug 'bfrg/vim-cpp-modern'
Plug 'deibit/a.vim'
Plug 'jansenm/vim-cmake'
" Python
Plug 'vim-python/python-syntax'
" Go
Plug 'fatih/vim-go'
" GUI
Plug 'RRethy/vim-illuminate'
Plug 'simnalamburt/vim-mundo'
Plug 'romainl/vim-cool'
Plug 'dense-analysis/ale'
Plug 'matze/vim-move'
Plug 'vim-airline/vim-airline'
Plug 'vim-airline/vim-airline-themes'
Plug 'flazz/vim-colorschemes'
Plug 'mcchrish/nnn.vim'
Plug 'preservim/nerdtree'
" Git
" Plug 'airblade/vim-gitgutter'
" Plug 'mhinz/vim-signify'
Plug 'tpope/vim-fugitive'
Plug 'cohama/agit.vim'
Plug 'rhysd/git-messenger.vim'
" Text Transformation
" Plug 'tmsvg/pear-tree'
" Plug 'junegunn/vim-easy-align'
Plug 'kana/vim-operator-user'
Plug 'kana/vim-textobj-user'
Plug 'kana/vim-textobj-indent'
Plug 'tpope/vim-commentary'
Plug 'tpope/vim-surround'
Plug 'mattn/emmet-vim'
Plug 'tommcdo/vim-lion'
" Themes
" Plug 'morhetz/gruvbox'
" Fonts
Plug 'ryanoasis/vim-devicons'
call plug#end()
" <<< SETTINGS >>>
filetype on
filetype indent on
filetype plugin on
syntax enable
" Behaviour
set autoread
set hidden
set tags=./tags;,tags;
" Mouse
set clipboard^=unnamed
if !has('mac')
set clipboard+=unnamedplus
endif
set mouse=a
" Search
set hlsearch
set ignorecase
set incsearch
set magic
set matchpairs+=<:>
" Backup
set noswapfile
set backupdir=/tmp
set copyindent
set history=1000
set nobackup
set nowritebackup
set undolevels=1000
" Verbosity
set noshowmode
set noerrorbells
set novisualbell
set laststatus=2
set shortmess+=I
set showmatch
set showcmd
set cursorline
set cmdheight=2
" Indent, case, tabs
set backspace=indent,eol,start
set autoindent
set expandtab
set shiftwidth=4
set smartcase
set smarttab
" set tabstop=4
" set softtabstop=4
" Windows
set number
set completeopt-=preview
set completeopt=menu,menuone,noinsert,noselect
set lazyredraw
set splitbelow
set splitright
" Terminal
set encoding=utf-8
set termencoding=utf-8
set timeoutlen=500
set title
set titleold=0
set ttimeoutlen=0
set termguicolors
" Wildmenu options
set wildmenu
" set wildmode=list:longest,full
set wildignorecase
set wildignore+=*/.git/*,*/.hg/*,*/.svn/*,*/.vscode/*,*/.ccls-cache/*
set wildignore+=*/tmp/,*.swp,*.zip
set wildignore+=*.a,*.o,*.obj,*.exe,*.dll,*.manifest " compiled object files
set wildignore+=*.aux,*.out,*.toc " LaTeX intermediate files
set wildignore+=*.DS_Store " OSX bullshit
set wildignore+=*.jpg,*.bmp,*.gif,*.png,*.jpeg " binary images
set wildignore+=*.luac " Lua byte code
set wildignore+=migrations " Django migrations
set wildignore+=*.orig " Merge resolution file
set wildignore+=*.pdf,*.zip,*.so " binaries
set wildignore+=*.pyc,*.pyo,*/__pycache__/* " Python byte code
set wildignore+=*.spl " compiled spelling word lists
set wildignore+=*.swp,*.bak " ignore these
set wildignore+=*.sw? " Vim swap files
set wildignore+=**/vendor " Ignore vendor directory
set wildignore+=tags " tag files
" Fold
set foldmethod=syntax
set foldlevelstart=20
" Colorscheme
colorscheme Tomorrow-Night
set background=dark
if has('mac')
set termguicolors
endif
" Use persistent history.
if !isdirectory("/tmp/.vim-undo-dir")
call mkdir("/tmp/.vim-undo-dir", "", 0700)
endif
set undofile
set undodir=/tmp/
augroup Conceal
au FileType * setl cole=0
augroup END
" Match-it
runtime macros/matchit.vim
" <<< MAPPINGS (not plugins) >>>
nmap <c-s> :w<cr>
"
"Goto the last edited file with backspace
nnoremap <BS> <C-^>
nnoremap <silent><tab> :bn<cr>
" Leader
let mapleader = ","
let g:mapleader = ","
nnoremap <space> <nop>
" Non-english keyboard tag navigation fix
nnoremap <silent><leader>g <c-]>
" Fast escape
inoremap jk <ESC>
" Nop some keys
nnoremap Q <nop>
nnoremap gQ <nop>
" Turn off Highlight (although, is not needed if nohl is set)
nnoremap <silent><leader><cr> :noh<cr>
" Some convenient shortcuts
nnoremap <leader>1 yypVr=
nnoremap <leader>2 yypVr-
" Get rid of ^M
noremap <leader>M mmHmt:%s/<C-V><cr>//ge<cr>'tzt'm
" Fast saving
nnoremap <nowait><leader>w :w<cr>
" Buffer unload
nnoremap <silent><leader>uu :bd<cr>
" Copy-paste Windows fashioned
inoremap <c-v> <esc>"*P}i
vnoremap <c-c> "*y<esc>
" Moving through wrapped lines
nnoremap j gj
nnoremap k gk
" Use tab and s-tab for indenting blocks in Visual Mode
xnoremap < <gv
xnoremap > >gv
" vimrc editing and sourcing
noremap <leader>v :e! $MYVIMRC<CR>
autocmd! BufWritePost $MYVIMRC source $MYVIMRC
" This command will allow us to save a file we don't have permission to save
" *after* we have already opened it. Super useful.
cnoremap w!! w !sudo tee % >/dev/null
" These create newlines like o and O but stay in normal mode
nnoremap <silent> zj o<Esc>k
nnoremap <silent> zk O<Esc>j
" Toggle paste
nnoremap <silent><f12> :set invpaste<CR>
" Window manipulation
nnoremap <leader>" :vsplit<CR>
nnoremap <leader>% :split<CR>
nnoremap <c-left> <c-w>h
nnoremap <c-down> <c-w>j
nnoremap <c-up> <c-w>k
nnoremap <c-right> <c-w>l
" Open a terminal
nnoremap <leader>e :vert terminal<CR>
" Move lines ala Sublime Text
if has('mac')
nnoremap [B :m .+1<CR>==
nnoremap [A :m .-2<CR>==
inoremap [B <Esc>:m .+1<CR>==gi
inoremap [A <Esc>:m .-2<CR>==gi
vnoremap [B :m '>+1<CR>gv=gv
vnoremap [A :m '<-2<CR>gv=gv
else
nnoremap <A-down> :m .+1<CR>==
nnoremap <A-up> :m .-2<CR>==
inoremap <A-down> <Esc>:m .+1<CR>==gi
inoremap <A-up> <Esc>:m .-2<CR>==gi
vnoremap <A-down> :m '>+1<CR>gv=gv
vnoremap <A-up> :m '<-2<CR>gv=gv
endif
" Remapped U for redo ctrl-r
nnoremap U <c-r>
" Cheats file
nnoremap <leader>ch :vs ~/.vim/cheats.md<CR>
" <<< PLUGINS CONFIGURATION >>>
" nnn
let g:nnn#command = 'nnn -de'
" vim-vue
let g:vue_pre_processors = []
" Airline
let g:airline_theme='tomorrow'
" Supertab
" Reverse the reversed direction in completion
let g:SuperTabDefaultCompletionType = "<c-n>"
let g:SuperTabDefaultCompletionType = "context"
" Auto-pairs
let g:AutoPairsShortcutFastWrap = '<C-e>'
" Gutentags
let g:gutentags_project_root = ['tags', '.git']
let g:gutentags_ctags_exclude = ['node_modules']
let g:gutentags_cscope_exclude = ['node_modules']
let g:gutentags_gtags_exclude = ['node_modules']
let mapleader = ","
let g:mapleader = ","
" Bdelete a buffer without closing Vim or window layout
nnoremap <silent><leader>D :Bdelete<cr>
" vim-mode
"
let g:move_key_modifier = 'C'
" Devdocs
"-------------------------------------------------------------------------------
augroup plugin-devdocs
autocmd!
autocmd FileType c,cpp,python,js,go nmap <buffer>K <Plug>(devdocs-under-cursor)
augroup END
" Asyncrun
"------------------------------------------------------------------------------
let g:asyncrun_open = 6
"MAKE"
nnoremap <silent> <F7> :AsyncRun -cwd=<root> make <cr>
"CMAKE"
nnoremap <silent> <F8> :AsyncRun -cwd=<root> cmake . <cr>
"Single file compilation"
nnoremap <silent> <F9> :AsyncRun clang++ -std=c++1z -stdlib=libc++ -Wall -O2 "$(VIM_FILEPATH)" -o "$(VIM_FILEDIR)/$(VIM_FILENOEXT)" <cr>
nnoremap <F10> :call asyncrun#quickfix_toggle(10)<cr>
" FZF
"------------------------------------------------------------------------------
"
let g:fzf_preview_window = 'right:60%'
nnoremap <silent><leader>b :Buffers!<cr>
nnoremap <silent><leader>B :BTags!<cr>
nnoremap <silent><leader>F :GFiles!<cr>
nnoremap <silent><leader>L :FZFLines!<cr>
" Find is defined on functions.vim
nnoremap <leader>r :Find <C-R><C-W><CR>
nnoremap <silent><leader>S :Snippets<cr>
nnoremap <silent><leader>a :Ag! <c-r><c-w><cr>
nnoremap <silent><leader>c :Commands<cr>
nnoremap <silent><leader>f :Files!<cr>
nnoremap <silent><leader>h :Helptags<cr>
nnoremap <silent><leader>hh :History!<cr>
nnoremap <silent><leader>l :FZFBLines!<cr>
nnoremap <silent><leader>m :Maps<cr>
nnoremap <silent><leader>ma :Marks!<cr>
nnoremap <silent><leader>t :Tags!<cr>
nnoremap <silent><leader>q :Quickfix!<cr>
" Customize fzf colors to match your color scheme
let g:fzf_colors =
\ { 'fg': ['fg', 'Normal'],
\ 'bg': ['bg', 'Normal'],
\ 'hl': ['fg', 'Comment'],
\ 'fg+': ['fg', 'CursorLine', 'CursorColumn', 'Normal'],
\ 'bg+': ['bg', 'CursorLine', 'CursorColumn'],
\ 'hl+': ['fg', 'Statement'],
\ 'info': ['fg', 'PreProc'],
\ 'prompt': ['fg', 'Conditional'],
\ 'pointer': ['fg', 'Exception'],
\ 'marker': ['fg', 'Keyword'],
\ 'spinner': ['fg', 'Label'],
\ 'header': ['fg', 'Comment'] }
" Similarly, we can apply it to fzf#vim#grep:
command! -bang -nargs=* Ag
\ call fzf#vim#grep(
\ 'ag --column --line-number --no-heading --color '.shellescape(<q-args>), 1,
\ <bang>0 ? fzf#vim#with_preview('up:60%')
\ : fzf#vim#with_preview('right:50%:hidden', '?'),
\ <bang>0)
" fzf_quickfix
" let g:fzf_quickfix_syntax_on = 0
" Vim-go
let g:go_fmt_fail_silently = 1
let g:go_fmt_command = "gofmt"
let g:go_highlight_build_constraints = 1
let g:go_highlight_extra_types = 1
let g:go_highlight_functions = 1
let g:go_highlight_interfaces = 1
let g:go_highlight_methods = 1
let g:go_highlight_operators = 1
let g:go_highlight_structs = 1
let g:go_highlight_types = 1
let g:go_info_mode = 'gopls'
let g:go_doc_popup_window = 1
" Does not open a window with GoLint output (good for having ALE)
let g:go_metalinter_autosave = 0
augroup Golang_mappings
autocmd!
autocmd FileType go nmap <Leader>gd <Plug>(go-doc)
autocmd FileType go nmap <Leader>gdd <Plug>(go-doc-browser)
autocmd FileType go nmap <Leader>ge <Plug>(go-rename)
autocmd FileType go nmap <Leader>gi <Plug>(go-info)
autocmd FileType go nmap <Leader>gm <Plug>(go-implements)
autocmd FileType go nmap <Leader>gr <Plug>(go-rename)
autocmd FileType go nmap <Leader>gs <Plug>(go-def-split)
autocmd FileType go nmap <Leader>gv <Plug>(go-def-vertical)
autocmd FileType go nmap <leader>gb <Plug>(go-build)
autocmd FileType go nmap <leader>gc <Plug>(go-coverage)
autocmd FileType go nmap <leader>gr <Plug>(go-run)
autocmd FileType go nmap <leader>gt <Plug>(go-test)
augroup END
"
" A (switch header/implementation)
"-------------------------------------------------------------------------------
nnoremap <silent><leader>H :A<CR>
nnoremap <silent><leader>HS :AS<CR>
nnoremap <silent><leader>HV :AV<CR>
" Vim-mundo
"-------------------------------------------------------------------------------
nnoremap <silent><leader>u :MundoToggle<cr>
" Python syntax
"-------------------------------------------------------------------------------
let g:python_highlight_all=1
let g:python_highlight_space_errors=0
" Markdown
"-------------------------------------------------------------------------------
autocmd BufNewFile,BufReadPost *.md set filetype=markdown
" Tagbar
"-------------------------------------------------------------------------------
nnoremap <leader>T :TagbarToggle<cr>
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 --excmd=number'
\ }
" NerdTree
"-------------------------------------------------------------------------------
nnoremap <leader>- :NERDTreeToggle<CR>
autocmd bufenter * if (winnr("$") == 1 && exists("b:NERDTree") && b:NERDTree.isTabTree()) | q | endif
" If more than one window and previous buffer was NERDTree, go back to it.
autocmd BufEnter * if bufname('#') =~# "^NERD_tree_" && winnr('$') > 1 | b# | endif
" Illuminati
"-------------------------------------------------------------------------------
let g:Illuminate_ftblacklist = ['nerdtree']
let g:Illuminate_highlightUnderCursor = 0
" Vim-cool
"-------------------------------------------------------------------------------
let g:CoolTotalMatches = 1
" ALE
"-------------------------------------------------------------------------------
let g:ale_completion_enabled = 1
set omnifunc=ale#completion#OmniFunc
nnoremap <silent>gd :ALEGoToDefinition<cr>
nnoremap <silent>gD :ALEGoToDefinitionInVSplit<cr>
nnoremap <silent>gt :ALEGoToTypeDefinition<cr>
nnoremap <silent>gT :ALEGoToTypeDefinitionInVSplit<cr>
nnoremap <silent>gr :ALEFindReferences<cr>
nnoremap <silent>gn :ALENext<cr>
nnoremap <silent>gp :ALEPrevious<cr>
let g:ale_sign_error = "◉"
let g:ale_sign_warning = "◉"
highlight ALEErrorSign ctermfg=9 ctermbg=15 guifg=#C30500 guibg=NONE
highlight ALEWarningSign ctermfg=11 ctermbg=15 guifg=#ED6237 guibg=NONE
let g:ale_close_preview_on_insert = 1
let g:ale_set_balloons = 1
" temp
let g:ale_virtualenv_dir_names = []
" Only run explicit linters
let g:ale_linters_explicit = 1
let g:ale_set_loclist = 0
let g:ale_set_quickfix = 1
" Fixers
let g:ale_fixers = {
\ 'javascript': ['eslint'],
\ 'vue': ['eslint'],
\ 'css': ['eslint'],
\ 'html': ['eslint'],
\ 'python': ['autopep8', 'black'],
\ 'rust': ['rustfmt']
\}
let g:ale_fix_on_save = 1
" Aliases for Vue
let g:ale_linter_aliases = {'vue': ['vue', 'javascript']}
" Linters
let g:ale_linters = {
\ 'javascript': ['eslint', 'tsserver'],
\ 'css': ['eslint'],
\ 'html': ['eslint'],
\ 'python': ['pylint', 'pyls'],
\ 'vue': ['eslint', 'vls'],
\ 'cpp': ['ccls'],
\ 'c': ['ccls'],
\ 'rust': ['cargo', 'rls', 'rustc'],
\ 'go': ['gopls', 'gofmt', 'golint'],
\ 'swift': ['sourcekitlsp']
\}
let g:ale_sourcekit_lsp_executable = "~/Repos/sourcekit-lsp/.build/x86_64-apple-macosx/debug/sourcekit-lsp"
let g:ale_lint_on_save = 1
let g:ale_pattern_options_enabled = 1
" Do not lint or fix minified files
let g:ale_pattern_options = {
\ '\.min\.js$': {'ale_linters': [], 'ale_fixers': []},
\ '\.min\.css$': {'ale_linters': [], 'ale_fixers': []},
\}
" if hidden is not set, TextEdit might fail.
set hidden
" Some servers have issues with backup files, see #649
set nobackup
set nowritebackup
" Better display for messages
set cmdheight=2
" You will have bad experience for diagnostic messages when it's default 4000.
set updatetime=300
" don't give |ins-completion-menu| messages.
set shortmess+=c
" always show signcolumns
set signcolumn=yes
" <<< OWN FUNCTIONS >>>
" Deletes trailing whitespaces on save
"------------------------------------------------------------------------------
fun! <SID>StripTrailingWhitespaces()
let l:saved_winview = winsaveview()
" let l = line(".")
" let c = col(".")
keeppatterns %s/\s\+$//e
call winrestview(l:saved_winview)
" call cursor(l, c)
endfun
augroup AUGStripTrailWhiteSpaces
autocmd! FileType * autocmd! BufWritePre <buffer> :call <SID>StripTrailingWhitespaces()
augroup END
" Return to last edit position when opening files (You want this!)
"------------------------------------------------------------------------------
augroup AUGReturnLastPosition
autocmd! BufReadPost *
\ if line("'\"-") > 0 && line("'\"") <= line("$") |
\ exe "normal! g`\"" |
\ endif
augroup END
" Autosaving when leaving insert mode
"------------------------------------------------------------------------------
" autocmd! InsertLeave * if expand('%') != '' | update | endif
" Make preview window close when leaving insert mode
"------------------------------------------------------------------------------
augroup AUGPumVisible
autocmd! CursorMovedI,InsertLeave * if pumvisible() == 0|silent! pclose|endif
augroup END
" HTML Config
"------------------------------------------------------------------------------
augroup AUGHTML
autocmd! BufNewFile,BufReadPost *.html set filetype=html
autocmd! FileType html set omnifunc=htmlcomplete#CompleteTags
augroup END
" cppreference (will open a browser with a search in www.cppreference.com)
"------------------------------------------------------------------------------
fun! CppRef()
let s:keyword = expand("<cword>")
let s:url = "http://en.cppreference.com/mwiki/index.php?title=Special:Search&search=std::" . s:keyword
if s:url != ""
silent exec "!open '".s:url."'"
endif
redraw!
endfun
augroup CppReference
autocmd! FileType c,cpp,h,hpp,hxx nnoremap <leader>x :call CppRef()<CR>
augroup END
" Auto Relative Numbers Toggle
"------------------------------------------------------------------------------
" augroup numbertoggle
" autocmd!
" autocmd BufEnter,FocusGained,InsertLeave,WinEnter * if &nu | set rnu | endif
" autocmd BufLeave,FocusLost,InsertEnter,WinLeave * if &nu | set nornu | endif
" augroup END
" Ag integration
"-------------------------------------------------------------------------------
" --column: Show column number
" --line-number: Show line number
" --no-heading: Do not show file headings in results
" --fixed-strings: Search term as a literal string
" --ignore-case: Case insensitive search
" --hidden: Search hidden files and folders
" --follow: Follow symlinks
" --color: Search color options
command! -bang -nargs=* Find call fzf#vim#grep('ag --column --numbers --noheading --fixed-strings --ignore-case --hidden --follow --ignore ".git/*" --color '.shellescape(<q-args>), 1, <bang>0)
if executable('rg')
set grepprg=rg\ -H\ --no-heading\ --vimgrep
else
set grepprg=grep\ -rn\ $*\ *
endif
set grepformat=%f:%l:%c:%m
" Clang-format
"-------------------------------------------------------------------------------
if executable('clang-format')
function! ClangFormatOnSave()
let l = line(".")
let c = col(".")
silent execute '%! clang-format'
call cursor(l, c)
endfunction
autocmd! BufWritePre *.{h,hpp,hxx,c,cpp} call ClangFormatOnSave()
endif
" Yaml
"-------------------------------------------------------------------------------
augroup yaml-config
autocmd! BufNewFile,BufReadPost *.{yaml,yml} set filetype=yaml
autocmd! FileType yaml setlocal ts=2 sts=2 sw=2 expandtab
augroup END
" Smarter cursorline
"-------------------------------------------------------------------------------
augroup AUGCursorLine
autocmd! InsertLeave,WinEnter * set cursorline
autocmd! InsertEnter,WinLeave * set nocursorline
augroup END
"
"-------------------------------------------------------------------------------
" close if final buffer is netrw or the quickfix
augroup AUGFinalCountdown
au!
autocmd WinEnter * if winnr('$') == 1 &&
\ getbufvar(winbufnr(winnr()), "&filetype") == "netrw" ||
\ &buftype == 'quickfix' |q|endif
"autocmd BufEnter * if (winnr("$") == 1 && exists("b:NERDTree") && \
"\ b:NERDTree.isTabTree()) || &buftype == 'quickfix' | q | endif
nmap - :Lexplore<cr>
"nmap - :NERDTreeToggle<cr>
augroup END
" <<< bbye >>>
if exists("g:loaded_bbye") || &cp | finish | endif
let g:loaded_bbye = 1
function! s:bdelete(action, bang, buffer_name)
let buffer = s:str2bufnr(a:buffer_name)
let w:bbye_back = 1
if buffer < 0
return s:error("E516: No buffers were deleted. No match for ".a:buffer_name)
endif
if getbufvar(buffer, "&modified") && empty(a:bang)
let error = "E89: No write since last change for buffer "
return s:error(error . buffer . " (add ! to override)")
endif
" If the buffer is set to[<0;79;14M[<0;79;14m delete and it contains changes, we can't switch
" away from it. Hide it before eventual deleting:
if getbufvar(buffer, "&modified") && !empty(a:bang)
call setbufvar(buffer, "&bufhidden", "hide")
endif
" For cases where adding buffers causes new windows to appear or hiding some
" causes windows to disappear and thereby decrement, loop backwards.
for window in reverse(range(1, winnr("$")))
" For invalid window numbers, winbufnr returns -1.
if winbufnr(window) != buffer | continue | endif
execute window . "wincmd w"
" Bprevious also wraps around the buffer list, if necessary:
try | exe bufnr("#") > 0 && buflisted(bufnr("#")) ? "buffer #" : "bprevious"
catch /^Vim([^)]*):E85:/ " E85: There is no listed buffer
endtry
" If found a new buffer for this window, mission accomplished:
if bufnr("%") != buffer | continue | endif
call s:new(a:bang)
endfor
" Because tabbars and other appearing/disappearing windows change
" the window numbers, find where we were manually:
let back = filter(range(1, winnr("$")), "getwinvar(v:val, 'bbye_back')")[0]
if back | exe back . "wincmd w" | unlet w:bbye_back | endif
" If it hasn't been already deleted by &bufhidden, end its pains now.
" Unless it previously was an unnamed buffer and :enew returned it again.
"
" Using buflisted() over bufexists() because bufhidden=delete causes the
" buffer to still _exist_ even though it won't be :bdelete-able.
if buflisted(buffer) && buffer != bufnr("%")
exe a:action . a:bang . " " . buffer
endif
endfunction
function! s:str2bufnr(buffer)
if empty(a:buffer)
return bufnr("%")
elseif a:buffer =~# '^\d\+$'
return bufnr(str2nr(a:buffer))
else
return bufnr(a:buffer)
endif
endfunction
function! s:new(bang)
exe "enew" . a:bang
setl noswapfile
" If empty and out of sight, delete it right away:
setl bufhidden=wipe
" Regular buftype warns people if they have unsaved text there. Wouldn't
" want to lose someone's data:
setl buftype=
" Hide the buffer from buffer explorers and tabbars:
setl nobuflisted
endfunction
" Using the built-in :echoerr prints a stacktrace, which isn't that nice.
function! s:error(msg)
echohl ErrorMsg
echomsg a:msg
echohl NONE
let v:errmsg = a:msg
endfunction
command! -bang -complete=buffer -nargs=? Bdelete
\ :call s:bdelete("bdelete", <q-bang>, <q-args>)
command! -bang -complete=buffer -nargs=? Bwipeout
\ :call s:bdelete("bwipeout", <q-bang>, <q-args>)