-
Notifications
You must be signed in to change notification settings - Fork 3
/
vimrc
1142 lines (983 loc) · 37.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
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
" vim: set tabstop=2 shiftwidth=2 foldmethod=marker:
" built-in / startup {{{
if v:version < 600 | finish | endif
if $NORC || $CLEAN || $norc || $clean
setglobal noloadplugins
finish
endif
" disable some plugins
let g:loaded_man=1
let g:loaded_gzip=1
let g:loaded_tarPlugin=1
let g:loaded_tar=1
let g:loaded_zipPlugin=1
let g:loaded_zip=1
" enable cfilter (sensible enables matchit)
packadd! cfilter
" }}}
" vim-plug {{{
call plug#begin('~/.vim/plugged')
if has('nvim')
Plug 'https://github.com/folke/tokyonight.nvim', { 'branch': 'main' }
Plug 'https://github.com/nvim-treesitter/nvim-treesitter', {'do': ':TSUpdate'}
Plug 'https://github.com/hiphish/rainbow-delimiters.nvim'
Plug 'https://github.com/JoosepAlviste/nvim-ts-context-commentstring'
Plug 'https://github.com/levouh/tint.nvim'
Plug 'https://github.com/Bekaboo/dropbar.nvim'
Plug 'https://github.com/lukas-reineke/indent-blankline.nvim', { 'tag': 'v2.20.8' }
Plug 'https://github.com/windwp/nvim-ts-autotag'
Plug 'https://github.com/kyazdani42/nvim-web-devicons'
endif
" tpope
Plug 'https://github.com/tpope/vim-sensible'
Plug 'https://github.com/tpope/vim-fugitive'
Plug 'https://github.com/tpope/vim-endwise'
Plug 'https://github.com/tpope/vim-commentary'
Plug 'https://github.com/tpope/vim-repeat'
Plug 'https://github.com/tpope/vim-obsession'
Plug 'https://github.com/tpope/vim-eunuch'
Plug 'https://github.com/tpope/vim-scriptease'
Plug 'https://github.com/tpope/vim-unimpaired'
Plug 'https://github.com/tpope/vim-sleuth'
Plug 'https://github.com/tpope/vim-vinegar'
" me
Plug 'https://github.com/Gee19/indent-ignoreblank.vim' " Get correct indent for new lines despite blank lines
Plug 'https://github.com/Gee19/vim-sandwich' " Add insert mappings from surround
Plug 'https://github.com/Gee19/vim-coiled-snake' " kalekundert/vim-coiled-snake/issues/34
Plug 'https://github.com/Gee19/lessspace.vim' " Added toggle func
Plug 'https://github.com/Gee19/vim-glyph-palette' " Undefined g:term_color_13 bugfix
Plug 'https://github.com/Gee19/vim-peekaboo' " Fixes conflict with lessspace + floating window
let g:peekaboo_window="float"
" dhruvasagar
Plug 'https://github.com/dhruvasagar/vim-prosession' " Auto session management, requires obsession
let g:prosession_per_branch = 1
Plug 'https://github.com/dhruvasagar/vim-zoom' " Split zoom like tmux
nmap <C-w>z <Plug>(zoom-toggle)
" Statusline, bufferline and buffers
Plug 'https://github.com/itchyny/lightline.vim'
Plug 'https://github.com/mengelbrecht/lightline-bufferline'
Plug 'https://github.com/moll/vim-bbye' " Delete buffers without affecting layout
" Text Objects
Plug 'https://github.com/kana/vim-textobj-user'
Plug 'https://github.com/kana/vim-textobj-indent'
Plug 'https://github.com/glts/vim-textobj-comment'
Plug 'https://github.com/kana/vim-textobj-function'
Plug 'https://github.com/kana/vim-textobj-indent'
Plug 'https://github.com/PeterRincker/vim-argumentative' " Argument text objects i, a, >,
" Whatever doesn't have a treesitter parser..
Plug 'https://github.com/towolf/vim-helm'
Plug 'https://github.com/Vimjas/vim-python-pep8-indent'
" Folds
Plug 'https://github.com/Konfekt/FastFold'
" viM iSn'T aN IDe
Plug 'https://github.com/neoclide/coc.nvim', {'branch': 'master', 'do': 'npm install && npm ci'}
Plug 'https://github.com/christoomey/vim-tmux-navigator'
Plug 'https://github.com/farmergreg/vim-lastplace' " broken in vim + windows terminal :(
Plug 'https://github.com/editorconfig/editorconfig-vim'
Plug 'https://github.com/wsdjeg/vim-fetch'
Plug 'https://github.com/neoclide/jsonc.vim'
" Fern
Plug 'https://github.com/lambdalisue/fern.vim'
Plug 'https://github.com/lambdalisue/fern-hijack.vim'
Plug 'https://github.com/lambdalisue/fern-git-status.vim'
Plug 'https://github.com/lambdalisue/fern-renderer-nerdfont.vim'
Plug 'https://github.com/lambdalisue/nerdfont.vim'
" Instant markdown preview (Only accessible on localhost / blocks scripts by default)
Plug 'https://github.com/instant-markdown/vim-instant-markdown', {'for': 'markdown', 'do':'yarn install'}
let g:instant_markdown_autostart = 0
let g:instant_markdown_allow_external_content = 0
" Inline colours
Plug 'https://github.com/rrethy/vim-hexokinase', { 'do': 'make hexokinase && cp ./hexokinase/hexokinase ${GOPATH}/bin/hexokinase' }
let g:Hexokinase_optInPatterns = ['full_hex', 'triple_hex', 'rgb', 'rgba', 'hsl', 'hsla', 'colour_names']
let g:Hexokinase_ftOptOutPatterns = {'text': ['colour_names']}
" inkarkat
" {register}-gr-{motion} dot repeatable
Plug 'https://github.com/inkarkat/vim-ReplaceWithRegister'
Plug 'https://github.com/inkarkat/vim-ReplaceWithSameIndentRegister'
Plug 'https://github.com/inkarkat/vim-visualrepeat'
Plug 'https://github.com/inkarkat/vim-RelativeNumberCurrentWindow'
" AndrewRadev & friends, extend join/split (gS/gJ)
Plug 'https://github.com/AndrewRadev/switch.vim'
Plug 'https://github.com/AndrewRadev/splitjoin.vim'
Plug 'https://github.com/flwyd/vim-conjoin' " Must come AFTER splitjoin (broken for vim comments in vim)
" Deprecated / fixed in neovim 0.8
" Decoupling updatetime from CursorHold & CursorHoldI is still useful
if !has('gui')
Plug 'https://github.com/antoinemadec/FixCursorHold.nvim'
let g:cursorhold_updatetime = 100 " leave updatetime untouched (and avoid unnecessary swap writes)
endif
" git
Plug 'https://github.com/rhysd/conflict-marker.vim' " [x ]x to navigate merge conflicts
Plug 'https://github.com/rhysd/git-messenger.vim'
Plug 'https://github.com/rhysd/committia.vim'
Plug 'https://github.com/airblade/vim-gitgutter'
" grep/search & quickfix improvements
Plug 'https://github.com/rhysd/clever-f.vim'
Plug 'https://github.com/romainl/vim-qf'
Plug 'https://github.com/xuanduc987/prettier_qf'
" junegunn op
Plug 'https://github.com/junegunn/fzf'
Plug 'https://github.com/junegunn/fzf.vim'
call plug#end()
" }}}
" shell/colorscheme/grepprg {{{
if has('termguicolors')
set termguicolors " Use true colours
endif
set background=dark
let s:scheme = has('nvim') ? 'tokyonight-night' : 'retrobox'
let s:lightline_scheme = has('nvim') ? 'tokyonight' : 'solarized'
execute 'colorscheme ' . s:scheme
" Format JSON
command! -nargs=0 Jsonfmt :%!jq
command! -nargs=0 Jq :%!jq
command! D smile
" Use ripgrep for vim :grep
if executable('rg')
set grepprg=rg\ --vimgrep\ --no-heading\ --color=never\ --smart-case
set grepformat=%f:%l:%c:%m,%f:%l:%m
else
set grepprg=grep\ -nrH\ --exclude-dir=tags\ --exclude-dir=.git\ --exclude-dir=node_modules
set grepformat=%f:%l:%m
endif
" }}}
" vim only {{{
if !has('nvim')
set encoding=UTF-8
" block cursor
let &t_SI = "\e[6 q"
let &t_SR = "\e[4 q"
let &t_EI = "\e[2 q"
" Fix GitGutter CursorHold
autocmd VimEnter * call gitgutter#process_buffer(bufnr(''), 0)
" Fix meta keys
set <M-k>=k
set <M-j>=j
set <M-o>=o
set <M-i>=i
" Make Y behave like other capitals
nnoremap Y y$
" * in visual mode
xnoremap * y/\V<C-R>"<CR>
if has('vim9script') && v:version >= 900
set wildoptions+=fuzzy " Use fuzzy-matching to find completion matches
set smoothscroll " Scroll with screen lines
endif
" enable bracketed paste when used within tmux
" :h xterm-bracketed-paste
if !has('gui_running') && $TERM =~ '^\%(screen\|tmux\)'
" Better mouse support, see :help 'ttymouse'
set ttymouse=sgr
" Enable true colors, see :help xterm-true-color
let &t_8f = "\<Esc>[38;2;%lu;%lu;%lum"
let &t_8b = "\<Esc>[48;2;%lu;%lu;%lum"
" Enable bracketed paste mode, see :help xterm-bracketed-paste
let &t_BE = "\<Esc>[?2004h"
let &t_BD = "\<Esc>[?2004l"
let &t_PS = "\<Esc>[200~"
let &t_PE = "\<Esc>[201~"
" Enable focus event tracking, see :help xterm-focus-event
let &t_fe = "\<Esc>[?1004h"
let &t_fd = "\<Esc>[?1004l"
endif
endif
" }}}
" autocmds {{{
augroup common
autocmd!
autocmd BufLeave *#FZF :bd! " autoclose fzf buffer
autocmd FileType css :iabbrev <buffer> centerme display: 'flex';<cr>justify-content: 'center';<cr>align-items: 'center';
autocmd FileType jsonc,json setlocal commentstring=//\ %s
" Python requirements.txt syntax highlighting
" TODO: Better regex, optional patterns (*[-]requirements[.txt])
autocmd BufNewFile,BufRead *requirements* set syntax=config
" Conceal full github/gitlab URLs to keep 'gx' functionality
autocmd FileType vim,tmux setlocal foldmethod=marker conceallevel=2
autocmd FileType vim,tmux :call matchadd('Conceal', 'https://github.com/', 10, -1, {'conceal': ''})
autocmd FileType vim,tmux :call matchadd('Conceal', 'https://gitlab.com/', 10, -1, {'conceal': ''})
autocmd BufNewFile,BufRead * set formatoptions-=c formatoptions-=r formatoptions-=o " newline formatting
autocmd VimResized * wincmd = " Automatically equalize splits when resized
autocmd BufEnter *.txt if &buftype == 'help' | wincmd L | endif " vsplit new help buffers
autocmd TextYankPost * silent! lua vim.highlight.on_yank {higroup=(vim.fn['hlexists']('HighlightedyankRegion') > 0 and 'HighlightedyankRegion' or 'IncSearch'), timeout=200}
" set up default omnifunc
autocmd FileType *
\ if &omnifunc == "" |
\ setlocal omnifunc=syntaxcomplete#Complete |
\ endif
augroup END
" }}}
" globals {{{
set clipboard^=unnamed,unnamedplus " System clipboard & linux 'selection' clipboard
set path=.,,** " Search all directories recursively, * for fuzzy, drop /usr/include
set hidden " New buffers with unsaved changes
set noswapfile " No swap file on buffer load
set gdefault " Substitute all matches in a line
set cmdheight=2 " Better display for messages
set signcolumn=yes " Always show signcolumn
set updatetime=100 " Fix coc diagnostic messages
set colorcolumn=120 " Long line warning
set timeoutlen=500 ttimeoutlen=0 " Mapping and keycode delays
set showmatch " When a bracket is inserted, briefly jump to the matching one
set splitbelow " Put new window below current
set splitright " Open vplit buffer to the right
set laststatus=2 " Always show statusline
set showtabline=2 " Always show tabline
set linebreak " Avoid wrapping in middle of word
set showbreak=↪ " Show this char when wrapping
set foldlevelstart=2 " Fold class methods
set foldmethod=indent " Fold based on indentation
set nofoldenable " Open all folds by default
set noshowmode " Hide mode, handled by lightline
set shortmess+=c " don't give ins-completion-menu messages
set number " Line numbers
set relativenumber " Show line numbers from current location
set mouse=a " Enable mouse support in 'all' modes, fixes scrolling tmux history
set wildignorecase " Ignore case when completing file names and directories
set isfname-== " Open paths like foo=/tmp/foo with 'gf'
set wildoptions=pum " Use popupmenu for wildmenu in vim
set wildcharm=<C-z> " Use C-z for activating wildmenu in commands
set matchtime=2 " Time to show matching pair
set matchpairs+=<:> " Add <> to matchpairs
set scrolloff=5 " Minimum number of lines to keep above/below cursor
" don't syntax color long lines, doesn't work with treesitter (vim only)
set synmaxcol=250
syntax sync minlines=256
syntax sync maxlines=256
" Some coc servers have issues with backup files #649
set nobackup
set nowritebackup
set sessionoptions-=folds " Don't persist folds in sessions (FastFold docs)
let g:fastfold_savehook = 0 " folds are only updated manually but not when saving the buffer
let g:fastfold_fold_command_suffixes = [] " folds are not updated when closing or opening with mappings
" Persist coc workspace folders in session file
set sessionoptions+=globals
" Indentation
set tabstop=8 softtabstop=0
if exists('*shiftwidth')
set shiftwidth=0 softtabstop=-1
endif
set shiftround " Round indent to multiple of shiftwidth
set autoindent " Copy indent from current line when starting a new line
" Search
set ignorecase " Ignore case in search pattern
set smartcase " Override ignorecase if search contains uppercase
set hlsearch " Highlight previous search results
" Move cursor by display lines when wrapping
set virtualedit+=block
" Best method for EN spelling suggestions, only show 5
set spellsuggest=best,5
" builtin dictionary autocomplete Ctrl_X+Ctrl_K
set dictionary+=/usr/share/dict/words
" undofiles are incompatible between vim & neovim..
if has('persistent_undo')
if has('nvim')
set undodir=~/.config/nvim/undodir
else
set undodir=~/.vim/undodir
endif
if !isdirectory(expand(&undodir))
call mkdir(&undodir, 'p')
endif
set undofile
endif
" Yank absolute path to system clipboard
cabbrev yfp let @+=expand("%:p")<CR>
" Yank file name to system clipboard
cabbrev yfn let @+=expand("%:t")<CR>
" Bbye
cabbrev Bd Bdelete
cabbrev Bw Bwipeout
" Plug
cabbrev PC PlugClean
cabbrev PI PlugInstall
cabbrev PU PlugUpdate
cabbrev CU CocUpdate
cabbrev CL CocList
cabbrev CC CocClean
" Quickfix
cabbrev cf Cfilter
" Commit hash at 'Commit:' header with 'Special' highlight group
highlight link gitmessengerHash Special
" Italics
highlight Comment gui=italic cterm=italic
highlight htmlArg gui=italic cterm=italic
" Marks
noremap ` '
noremap ' `
noremap '' ``
noremap `` ''
sunmap '
sunmap `
sunmap ''
sunmap ``
" Macros
" Turn grype findings into grype ignore entries
let @g = '0WdtGWDFGdBiI - vulnerability: j'
" }}}
" mappings {{{
let mapleader = "\<Space>"
" Keep the cursor in place while joining lines
nnoremap J mzJ`z
" Don't let x, c or s spoil the yank register
for char in [ 'x', 'c', 's', 'X', 'C', 'S' ]
execute 'nnoremap ' . char . ' "_' . char
execute 'xnoremap ' . char . ' "_' . char
endfor
" Don't clobber yank register when pasting over visual selection (use 'P' instead)
xnoremap <expr> p 'pgv"' . v:register . 'y'
" Don't jump to next occurrence of search when using */g* (doesn't pollute registers/jump list)
nnoremap <silent><expr> * v:count ? '*'
\ : ':execute "keepjumps normal! *" <Bar> call winrestview(' . string(winsaveview()) . ')<CR>'
nnoremap <silent><expr> g* v:count ? 'g*'
\ : ':execute "keepjumps normal! g*" <Bar> call winrestview(' . string(winsaveview()) . ')<CR>'
" always center the screen after any movement command
nnoremap <C-d> <C-d>zz
nnoremap <C-u> <C-u>zz
" calculator
xnoremap <leader>= c<C-R>=<C-R>"<CR><esc>
map <leader>v :source $MYVIMRC<CR>
" beginning/end of the command line
cnoremap <C-a> <Home>
cnoremap <C-e> <End>
" tab/s-tab in addition to c-g/c-t to traverse matches while searching
cnoremap <expr> <Tab> getcmdtype() =~ "[/?]" ? "<C-g>" : "<C-z>"
cnoremap <expr> <S-Tab> getcmdtype() =~ "[/?]" ? "<C-t>" : "<S-Tab>"
" in insert mode
inoremap <C-e> <END>
inoremap <C-a> <HOME>
" Clear search highlighting with escape x2
nnoremap <silent><esc><esc> :nohlsearch<CR>
" splitting panes and moving around in panes
function! WinMove(key) abort
let t:curwin = winnr()
exec "wincmd ".a:key
if (t:curwin == winnr())
if (match(a:key,'[jk]'))
wincmd v
else
wincmd s
endif
exec "wincmd ".a:key
endif
endfunction
nnoremap <silent> <C-w>h :call WinMove('h')<CR>
nnoremap <silent> <C-w>j :call WinMove('j')<CR>
nnoremap <silent> <C-w>k :call WinMove('k')<CR>
nnoremap <silent> <C-w>l :call WinMove('l')<CR>
" Insert newline above or below and stay in normal mode
" No insert mode, doesn't move the cursor, and allows you to use a counter to append several lines at once
" Add 3 lines above: 3<leader>O
nnoremap <silent> <leader>o <Plug>(unimpaired-blank-down)
nnoremap <silent> <leader>O <Plug>(unimpaired-blank-up)
" Shift+U redo
nnoremap U :redo<CR>
" Disable ex mode
nnoremap Q <Nop>
" Map j and k to gj/gk, but only when no count is given
" However, for larger jumps like 6j add the current position to the jump list
" so that you can use <c-o>/<c-i> to jump to the previous position
nnoremap <expr> j v:count ? (v:count > 5 ? "m'" . v:count : '') . 'j' : 'gj'
nnoremap <expr> k v:count ? (v:count > 5 ? "m'" . v:count : '') . 'k' : 'gk'
" Move lines up or down and fix indentation
nnoremap <M-k> :<C-u>silent! move-2<CR>==
nnoremap <M-j> :<C-u>silent! move+<CR>==
xnoremap <M-k> :<C-u>silent! '<,'>move-2<CR>gv=gv
xnoremap <M-j> :<C-u>silent! '<,'>move'>+<CR>gv=gv
" Show the syntax highlight group under cursor
nnoremap <F10> <cmd>echo "hi<" . synIDattr(synID(line("."),col("."),1),"name") . '> trans<'
\ . synIDattr(synID(line("."),col("."),0),"name") . "> lo<"
\ . synIDattr(synIDtrans(synID(line("."),col("."),1)),"name") . ">"<cr>
" Fix wildmenu arrow keys in neovim
" https://vi.stackexchange.com/a/22628
let edit_re = 'e\%[dit] '
cnoremap <expr> <up> getcmdline() =~# edit_re && wildmenumode() ? "\<left>" : "\<up>"
cnoremap <expr> <down> getcmdline() =~# edit_re && wildmenumode() ? "\<right>" : "\<down>"
cnoremap <expr> <left> getcmdline() =~# edit_re && wildmenumode() ? "\<up>" : "\<left>"
cnoremap <expr> <right> getcmdline() =~# edit_re && wildmenumode() ? " \<bs>\<C-Z>" : "\<right>"
" Default <C-r> to repeatable behaviour for text changes
inoremap <C-r> <C-r><C-o>
" gotfile in vert split
nnoremap gfv :vertical wincmd f<CR>
" }}}
" plugins {{{
" lightline + tabline {{{
let g:lightline = {
\ 'colorscheme': s:lightline_scheme,
\ 'active': {
\ 'left': [ [ 'mode', 'paste' ],
\ [ 'cocstatus', 'readonly', 'zoom_status', 'modified' ] ]
\ },
\ 'component_function': {
\ 'cocstatus': 'coc#status',
\ 'zoom_status': 'zoom#statusline'
\ },
\ }
let g:lightline#bufferline#enable_devicons = 1
let g:lightline#bufferline#show_number = 1
let g:lightline#bufferline#smart_path = 1
let g:lightline#bufferline#unnamed = '[Empty]'
let g:lightline.tabline = {'left': [['buffers']], 'right': [['close']]}
let g:lightline.component_expand = {'buffers': 'lightline#bufferline#buffers'}
let g:lightline.component_type = {'buffers': 'tabsel'}
" Use autocmd to force lightline update.
autocmd User CocStatusChange,CocDiagnosticChange call lightline#update()
" }}}
" fern {{{
let g:fern#renderer = "nerdfont" " devicons
" mappings inspired dirvish
let g:fern#disable_default_mappings = 1
map <C-e> :Fern . -drawer -toggle<CR><C-w>=
map <leader>e :Fern . -drawer -toggle -reveal=%<CR><C-w>=
map <leader>. :Fern .<CR>
function! FernInit() abort
nmap <buffer><expr>
\ <Plug>(fern-my-open-expand-collapse)
\ fern#smart#leaf(
\ "\<Plug>(fern-action-open:select)",
\ "\<Plug>(fern-action-expand)",
\ "\<Plug>(fern-action-collapse)",
\ )
nmap <buffer> <CR> <Plug>(fern-my-open-expand-collapse)
nmap <buffer> <2-LeftMouse> <Plug>(fern-my-open-expand-collapse)
nmap <buffer> o <Plug>(fern-action-new-path)
nmap <buffer> O <Plug>(fern-action-new-path)
nmap <buffer> dd <Plug>(fern-action-remove)
nmap <buffer> cc <Plug>(fern-action-move)
nmap <buffer> yy <Plug>(fern-action-clipboard-copy)
nmap <buffer> p <Plug>(fern-action-clipboard-paste)
nmap <buffer> M <Plug>(fern-action-rename)
nmap <buffer> m <Plug>(fern-action-mark:toggle)
nmap <buffer> gm <Plug>(fern-action-mark:clear)
nmap <buffer> gh <Plug>(fern-action-hidden:toggle)
nmap <buffer> gr <Plug>(fern-action-reload)
nmap <buffer> <C-x> <Plug>(fern-action-open:split)
nmap <buffer> <C-v> <Plug>(fern-action-open:vsplit)
nmap <buffer><nowait> < <Plug>(fern-action-leave)
nmap <buffer><nowait> > <Plug>(fern-action-enter)
endfunction
augroup fern_stuff
autocmd!
autocmd FileType fern call FernInit()
" colored glyphs
autocmd FileType fern call glyph_palette#apply()
augroup END
" }}}
" coc.nvim {{{
if has_key(g:plugs, 'coc.nvim')
let g:coc_force_debug = 1
" try to use lang serv when tag jumping <C-]>
set tagfunc=CocTagFunc
" Use lang serv to format if available (! silences errors? jk)
set formatexpr=!CocAction('formatSelected')
" disable coc startup warning in vim
if !has('nvim')
let g:coc_disable_startup_warning = 1
endif
" let g:coc_node_path = '/home/jhaine/.fnm/node-versions/v18.20.0/installation/bin/node'
let g:coc_node_path = '/run/user/1000/fnm_multishells/8536_1730829113766/bin/node'
let g:coc_global_extensions = [
\ 'coc-prettier',
\ 'coc-pyright',
\ 'coc-json',
\ 'coc-css',
\ 'coc-tsserver',
\ 'coc-eslint',
\ 'coc-omnisharp',
\ 'coc-rls',
\ 'coc-java',
\ 'coc-yaml',
\ 'coc-sh',
\ 'coc-react-refactor',
\ 'coc-sumneko-lua',
\ 'coc-snippets',
\ 'coc-vimlsp',
\ 'https://github.com/rafamadriz/friendly-snippets@main'
\ ]
" Remove plugins not explicitly defined in g:coc_global_extensions
" Ignore special case: friendly-snippets
function! CocClean() abort
let g:extensions_to_clean = CocAction("loadedExtensions")
\ ->filter({idx, extension -> extension !~ 'friendly-snippets'})
\ ->filter({idx, extension -> index(g:coc_global_extensions, extension) == -1})
if len(g:extensions_to_clean)
exe 'CocUninstall' join(map(g:extensions_to_clean, {_, line -> split(line)[0]}))
else
echo 'Nothing to clean'
endif
endfunction
command! -nargs=0 CocClean :call CocClean()
" wip
" set runtimepath^=/home/jhaine/dev/coc-cucumber
" use <tab> for trigger completion and navigate to the next completion item
inoremap <silent><expr> <TAB>
\ coc#pum#visible() ? coc#pum#next(1):
\ <SID>check_back_space() ? "\<Tab>" :
\ coc#refresh()
function! s:check_back_space() abort
let col = col('.') - 1
return !col || getline('.')[col - 1] =~ '\s'
endfunction
" use shift-<tab> to navigate to previous completion item
inoremap <expr><S-TAB> coc#pum#visible() ? coc#pum#prev(1) : "\<C-h>"
" enter selects the first completion item and confirm the completion when no item has been selected
" fixes coc + endwise conflict
" tpope/vim-endwise/issues/125
inoremap <expr> <cr> <SID>coc_confirm()
function! s:coc_confirm() abort
if coc#pum#visible()
return coc#pum#confirm()
else
return "\<C-g>u\<CR>\<c-r>=coc#on_enter()\<CR>\<c-r>=EndwiseDiscretionary()\<CR>"
endif
endfunction
" Use <c-space> to trigger completion.
if has('nvim')
inoremap <silent><expr> <c-space> coc#refresh()
else
inoremap <silent><expr> <c-@> coc#refresh()
endif
" Prettier command
command! -nargs=0 Prettier :CocCommand prettier.formatFile
" Add `:Format` command to format current buffer
command! -nargs=0 Format :call CocAction('format')
" Add `:Fold` command to fold current buffer
command! -nargs=? Fold :call CocAction('fold', <f-args>)
" Add `:OR` command for organize imports of the current buffer.
" TODO: override this in python, use isort
command! -nargs=0 OR :call CocAction('runCommand', 'editor.action.organizeImport')
" Use K to show/hide documentation in preview window
function! ShowDocumentation() abort
if coc#float#has_float()
call coc#float#close_all()
elseif (index(['vim','help'], &filetype) >= 0)
execute 'h '.expand('<cword>')
elseif (CocAction('hasProvider', 'hover'))
call CocActionAsync('doHover')
else
execute '!' . &keywordprg . " " . expand('<cword>')
endif
endfunction
" Highlight the symbol and its references when holding the cursor
autocmd CursorHold * silent call CocActionAsync('highlight')
" Append to tagstack when jumping to definition, implementation or reference
function! s:goto_tag(tagkind) abort
let tagname = expand('<cword>')
let winnr = winnr()
let pos = getcurpos()
let pos[0] = bufnr()
if CocAction('jump' . a:tagkind)
call settagstack(winnr, {
\ 'curidx': gettagstack()['curidx'],
\ 'items': [{'tagname': tagname, 'from': pos}]
\ }, 't')
endif
endfunction
" Coc Binds
nmap <silent> gd <cmd>call <SID>goto_tag("Definition")<CR>
nmap <silent> gi <cmd>call <SID>goto_tag("Implementation")<CR>
nmap <silent> gR <cmd>call <SID>goto_tag("References")<CR>
nmap <silent> gD <cmd>call CocAction('jumpDefinition', 'vsplit')<CR>
nmap <silent> gy <Plug>(coc-type-definition)
nmap <silent> K <cmd>call ShowDocumentation()<CR>
" Function text object
" NOTE: Requires 'textDocument.documentSymbol' support from the language server.
xmap if <Plug>(coc-funcobj-i)
xmap af <Plug>(coc-funcobj-a)
omap if <Plug>(coc-funcobj-i)
omap af <Plug>(coc-funcobj-a)
" Use `[d` and `]d` to navigate diagnostics
nmap <silent> [d <Plug>(coc-diagnostic-prev)
nmap <silent> ]d <Plug>(coc-diagnostic-next)
" Show all diagnostics
nnoremap <silent><leader>d <cmd>CocList diagnostics<cr>
" Toggle diagnostics
nnoremap <leader>D <cmd>call CocAction('diagnosticToggle')<CR>
" TODO: use operatorfunc to make this work in visual mode (see GrepOperator)
" Show symbols in workspace
nnoremap <silent><expr> <leader>fs "<cmd>CocList -I --input=".expand('<cword>')." symbols<cr>"
nnoremap <silent><expr> <leader>fc "<cmd>CocList -I --input=".expand('<cword>')." symbols -kind Class<cr>"
" Applying codeAction to the selected region.
" Example: `<leader>cap` for current paragraph
xmap <silent><leader>c <Plug>(coc-codeaction-selected)
nmap <silent><leader>c <Plug>(coc-codeaction-selected)
" Remap keys for applying codeAction to the current buffer.
nmap <silent><leader>cG <Plug>(coc-codeaction)
" Fix autofix problem of current line
nmap <silent><leader><leader> <Plug>(coc-fix-current)
" Remap for rename current word
nmap <silent><leader>rn <Plug>(coc-rename)
" Scroll floating window if it exists
nnoremap <silent><expr> <PageUp> coc#float#has_scroll() ? coc#float#scroll(0, 1) : "\<PageUp>"
nnoremap <silent><expr> <PageDown> coc#float#has_scroll() ? coc#float#scroll(1, 1) : "\<PageDown>"
inoremap <silent><expr> <PageUp> coc#float#has_scroll() ? "\<c-r>=coc#float#scroll(0, 1)\<cr>" : "\<PageUp>"
inoremap <silent><expr> <PageDown> coc#float#has_scroll() ? "\<c-r>=coc#float#scroll(1, 1)\<cr>" : "\<PageDown>"
xnoremap <silent><expr> <PageUp> coc#float#has_scroll() ? coc#util#float_scroll_i(-1) : "\<PageUp>"
xnoremap <silent><expr> <PageDown> coc#float#has_scroll() ? coc#util#float_scroll_i(1) : "\<PageDown>"
endif
" }}}
" fzf {{{
" Default preview off, only in fullscreen (Rg!)
let g:fzf_preview_window = ''
" ripgrep preview
" Ignoring filetypes here is annoying
let $BAT_THEME = 'TwoDark'
command! -bang -nargs=* Rg
\ call fzf#vim#grep(
\ 'rg --column --no-heading --line-number --color=always
\ -g "!*.lock"
\ -g "!*.sql"
\ -g "!*.xml"
\ -g "!package-lock.json" '.shellescape(<q-args>), 1,
\ <bang>0 ? fzf#vim#with_preview({'options':'--layout=default --delimiter : --nth 4..', 'dir': system('git rev-parse --show-toplevel 2> /dev/null')[:-2]}, 'up:70%')
\ : fzf#vim#with_preview({'options': '--delimiter : --nth 4..', 'dir': system('git rev-parse --show-toplevel 2> /dev/null')[:-2]}, 'right:50%:hidden', '?'),
\ <bang>0)
" files in git repo with changes, fullscreen if called with bang
command! -bang -nargs=* Gd call fzf#vim#gitfiles('?', {'dir': system('git rev-parse --show-toplevel 2> /dev/null')[:-2]}, <bang>0)
" fullscreen ripgrep global search
nnoremap <silent> <leader><S-f> :Rg!<cr>
" TODO: use operatorfunc to make this work in visual mode (see GrepOperator)
" fullscreen ripgrep global search current word
nnoremap <silent> <expr> <leader>f "<cmd>Rg!\ ".expand('<cword>')."<cr>"
" all files in repo
nnoremap <silent> <C-p> <cmd>GitFiles<cr>
" files in cwd
nnoremap <silent> <C-f> <cmd>Files<cr>
" buffers
nnoremap <silent> <leader>b <cmd>Buffers<cr>
nnoremap <silent> <C-b> <cmd>Buffers<cr>
" nnoremap <C-b> :buffer<Space><C-R>=nr2char(&wildcharm)<CR><S-Tab>
" nnoremap <C-b> :buffer *
" marks
nnoremap <silent> <leader>m <cmd>Marks<cr>
" commits of current buffer - kinda requires fugitive
nnoremap <silent> <leader>gl <cmd>BCommits!<cr>
" Reverse layout for floating windows
let $FZF_DEFAULT_OPTS .= ' --inline-info --layout=reverse'
let g:fzf_layout = { 'window': { 'width': 0.5, 'height': 0.3, 'yoffset': '-1', 'border': 'rounded' } }
" Transparency
if has('nvim') && exists('&winblend') && has('termguicolors')
set winblend=10
if exists('g:fzf_colors.bg')
call remove(g:fzf_colors, 'bg')
endif
endif
" Jump to open buffer
let g:fzf_buffers_jump = 1
" FZF Buffer Delete
function! s:list_buffers() abort
redir => list
silent ls
redir END
return split(list, "\n")
endfunction
function! s:delete_buffers(lines) abort
" Use bdelete so buffers stay in locationlist
" TODO: echo what was deleted?
execute 'bdelete' join(map(a:lines, {_, line -> split(line)[0]}))
endfunction
command! BD call fzf#run(fzf#wrap({
\ 'source': s:list_buffers(),
\ 'sink*': {
\ lines -> s:delete_buffers(lines)
\ },
\ 'options': '--prompt="Delete Buffer(s):" --multi --reverse --bind ctrl-a:select-all+accept'
\ }))
" FZF Session Picker
let s:session_dir = '$HOME/.vim/session/'
function! s:list_sessions() abort
return systemlist('ls ' . s:session_dir)
endfunction
function! s:source_session(line) abort
exec 'source ' . s:session_dir . substitute(a:line[0], '%', '\\%', 'g')
endfunction
command! SP call fzf#run(fzf#wrap({ 'source': s:list_sessions(),'sink*': { line -> s:source_session(line) }, 'options': '--reverse' }))
" }}}
" clever-f {{{
let g:clever_f_across_no_line = 1 " only span 1 line
let g:clever_f_fix_key_direction = 1 " always force f->forward F->backward
" Keep functionality of ; & ,
map ; <Plug>(clever-f-repeat-forward)
map , <Plug>(clever-f-repeat-back)
" }}}
" quickfix {{{
function! AdjustWindowHeight(minheight, maxheight)
let l = 1
let n_lines = 0
let w_width = winwidth(0)
while l <= line('$')
" number to float for division
let l_len = strlen(getline(l)) + 0.0
let line_width = l_len/w_width
let n_lines += float2nr(ceil(line_width))
let l += 1
endw
execute max([min([n_lines, a:maxheight]), a:minheight]) . "wincmd _"
endfunction
augroup qf_resize
autocmd!
au FileType qf call AdjustWindowHeight(3, 10)
augroup END
command! ClearQuickfix cexpr []
command! -bar -nargs=* Jump cexpr system('git jump --stdout ' . expand(<q-args>))
" }}}
" async grep: https://gist.github.com/romainl/56f0c28ef953ffc157f36cc495947ab3{{{
command! -nargs=+ -complete=file_in_path -bar Grep cgetexpr Grep(<f-args>)
command! -nargs=+ -complete=file_in_path -bar LGrep lgetexpr Grep(<f-args>)
cnoreabbrev <expr> grep (getcmdtype() ==# ':' && getcmdline() ==# 'grep') ? 'Grep' : 'grep'
cnoreabbrev <expr> lgrep (getcmdtype() ==# ':' && getcmdline() ==# 'lgrep') ? 'LGrep' : 'lgrep'
augroup quickfix
autocmd!
autocmd QuickFixCmdPost cgetexpr cwindow
autocmd QuickFixCmdPost lgetexpr lwindow
augroup END
" call grepprg in a system shell instead of internal shell
" async but loading into qf is synchronous =[
function! Grep(...) abort
return system(join([&grepprg] + [expandcmd(join(a:000, ' '))], ' '))
endfunction
" https://learnvimscriptthehardway.stevelosh.com/chapters/34.html
nnoremap <leader>g :set operatorfunc=GrepOperator<cr>g@
vnoremap <leader>g :<c-u>call GrepOperator(visualmode())<cr>
function! GrepOperator(type)
let saved_unnamed_register = @@
if a:type ==# 'v'
normal! `<v`>y
elseif a:type ==# 'char'
normal! `[y`]
else
return
endif
silent execute "Grep " . shellescape(@@) . " ."
let @@ = saved_unnamed_register
endfunction
" }}}
" vim-qf {{{
nmap <C-q> <Plug>(qf_qf_toggle)
nmap <leader>q <Plug>(qf_loc_toggle)
" Makes ]q spammable, compliments vim-unimpaired
nmap q] <Plug>(qf_qf_next)
nmap q[ <Plug>(qf_qf_previous)
" Ack inspired mappings only in loc/qf windows
let g:qf_mapping_ack_style = 1
" s - open entry in a new horizontal window
" v - open entry in a new vertical window
" t - open entry in a new tab
" o - open entry and come back
" O - open entry and close the loc/qf window
" p - open entry in a preview window
" Disable these for async Grep
let g:qf_auto_open_quickfix = 0
let g:qf_auto_open_loclist = 0
" Normal: `dd` removes item from the quickfix list.
" Visual: `d` removes all selected items, gk keeps all selected items
augroup custom_qf_mapping
autocmd!
autocmd FileType qf nnoremap <buffer> dd :.Reject<CR>
autocmd FileType qf xnoremap <buffer> d :'<,'>Reject<CR>
autocmd FileType qf nnoremap <buffer> gk :.Keep<CR>
autocmd FileType qf xnoremap <buffer> gk :'<,'>Keep<CR>
augroup END
" }}}
" committia.vim {{{
let g:committia_hooks = {}
let g:committia_use_singlecolumn = 'fallback'
let g:committia_min_window_width = 110
function! g:committia_hooks.edit_open(info)
setlocal spell
" If no commit message, start with insert mode
if a:info.vcs ==# 'git' && getline(1) ==# ''
startinsert
endif
" Scroll the diff window from insert mode
imap <buffer><Down> <Plug>(committia-scroll-diff-down-half)
imap <buffer><Up> <Plug>(committia-scroll-diff-up-half)
endfunction
" }}}
" vim-gitgutter {{{
let g:gitgutter_map_keys = 0
let g:gitgutter_grep = 'rg'
let g:gitgutter_preview_win_floating = 0
" mappings
nmap ]h <Plug>(GitGutterNextHunk)
nmap [h <Plug>(GitGutterPrevHunk)
nmap <leader>gs <Plug>(GitGutterStageHunk)
nmap <leader>gu <Plug>(GitGutterUndoHunk)
function! PreviewExists() abort
for winnum in range(1, winnr('$'))
if getwinvar(winnum, '&previewwindow')
return 1
endif
endfor
return 0
endfunction
" Toggle hunk preview
nnoremap <silent> gph :exe PreviewExists() ? 'pc' : 'GitGutterPreviewHunk'<CR>
" text objects
omap ih <Plug>(GitGutterTextObjectInnerPending)
omap ah <Plug>(GitGutterTextObjectOuterPending)
xmap ih <Plug>(GitGutterTextObjectInnerVisual)
xmap ah <Plug>(GitGutterTextObjectOuterVisual)
" }}}
" romainl pseudo-text objects {{{
" https://gist.github.com/romainl/c0a8b57a36aec71a986f1120e1931f20
" 24 simple pseudo-text objects (, removed for argumentative)
for char in [ '_', '.', ':', ';', '<bar>', '/', '<bslash>', '*', '+', '-', '#', '`' ]
execute 'xnoremap i' . char . ' :<C-u>normal! T' . char . 'vt' . char . '<CR>'
execute 'onoremap i' . char . ' :normal vi' . char . '<CR>'
execute 'xnoremap a' . char . ' :<C-u>normal! F' . char . 'vf' . char . '<CR>'
execute 'onoremap a' . char . ' :normal va' . char . '<CR>'
endfor
" line pseudo-text objects | il al
xnoremap il g_o^
onoremap il :<C-u>normal vil<CR>
xnoremap al $o0
onoremap al :<C-u>normal val<CR>
" number pseudo-text object (integer and float) | in
function! VisualNumber()
call search('\d\([^0-9\.]\|$\)', 'cW')
normal v
call search('\(^\|[^0-9\.]\d\)', 'becW')
endfunction
xnoremap in :<C-u>call VisualNumber()<CR>
onoremap in :<C-u>normal vin<CR>
" }}}