summaryrefslogtreecommitdiffstats
path: root/.config/nvim/init.vim
blob: d077acccae8ecec4d4531e6b42e2dd60e48411ea (plain)
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
let g:polyglot_disabled=['latex', 'tex']

"{{{ Plugs
call plug#begin('~/.local/share/nvim/plugged')

" latex " had to move vimtex to top to avoid a difficult error
Plug 'lervag/vimtex', { 'for': ['tex', 'latex', 'plaintex']}
autocmd User vimtex call deoplete#custom#var('omni', 'input_patterns', {
            \ 'tex': g:vimtex#re#deoplete
            \})

" Vimscript debugger
" Plug 'vim-scripts/Decho'

" completion, 'lsp' and coding {{{ "

" completion framework
Plug 'Shougo/deoplete.nvim', { 'do': ':UpdateRemotePlugins' }
Plug 'lionawurscht/deoplete-biblatex'
Plug 'deoplete-plugins/deoplete-jedi'
" rust code completion & navigation
Plug 'racer-rust/vim-racer'
" syntax checking
Plug 'dense-analysis/ale'
" manages tag files
Plug 'ludovicchabant/vim-gutentags'
" run tests (todo: write tests)
Plug 'janko/vim-test'
" type in file send to repl
Plug 'jpalardy/vim-slime'
" snippets to expand
Plug 'SirVer/ultisnips' | Plug 'honza/vim-snippets'
" auto pair plugin, people hate these
Plug 'tmsvg/pear-tree'
" language packs
Plug 'sheerun/vim-polyglot'
" git diff in the sign column
Plug 'airblade/vim-gitgutter'
" gitk apparently
Plug 'cohama/agit.vim'
" completion preview of floating window
Plug 'ncm2/float-preview.nvim'
" switch between single line and multiline
Plug 'AndrewRadev/splitjoin.vim'

" }}} completion, 'lsp' and such "

" heresy {{{ "

" Fuzzy finder with post-update hook
Plug 'junegunn/fzf', { 'dir': '~/.fzf', 'do': './install --all' }
Plug 'junegunn/fzf.vim'

" TODO let's try out fern.vim
Plug 'lambdalisue/fern.vim'
" TODO bug in neovim, so required for now
" https://github.com/lambdalisue/fern.vim/issues/120
Plug 'antoinemadec/FixCursorHold.nvim'

" displays tags ordered by scope
Plug 'majutsushi/tagbar'
" status/tabline
Plug 'vim-airline/vim-airline'
Plug 'vim-airline/vim-airline-themes'
" undo tree visualizer
Plug 'mbbill/undotree'
" preview colours in source code
Plug 'ap/vim-css-color'

" }}} heresy "

" colour theme of $CURRENT_YEAR
Plug 'bluz71/vim-moonfly-colors'

" prose, note taking {{{ "

" Personal wiki
Plug 'vimwiki/vimwiki'
" centers the writing
Plug 'junegunn/goyo.vim'
" highlights the current paragraph
Plug 'junegunn/limelight.vim'
" thesaurus query & replacement
Plug 'ron89/thesaurus_query.vim'

" }}} prose, note taking "

" movement, editing {{{ "

" text alignment \w :Tab
Plug 'godlygeek/tabular'
" move selections up and down with alt+[j,k]
Plug 'matze/vim-move'
" surround text objects; sa, sr and sd
Plug 'machakann/vim-sandwich'
" provide additional text objects
Plug 'wellle/targets.vim'
" indentation level text object, ia, ii
Plug 'michaeljsmith/vim-indent-object'
" visual feedback for substitute holy shit this is amazing
Plug 'markonm/traces.vim'
" see the contents of registers on "/<CTRL-R>
Plug 'junegunn/vim-peekaboo'
" use <leader>k to highlight multiple words
Plug 'lfv89/vim-interestingwords'
" swap delimited items using g>, g<
Plug 'machakann/vim-swap'
" jump to location by 2 characters, `
Plug 'justinmk/vim-sneak'
" reopen files at your last edit position
Plug 'farmergreg/vim-lastplace'
" flash cursor on jump
Plug 'DanilaMihailov/beacon.nvim'
" ascii drawing plugin
Plug 'vim-scripts/DrawIt'

" }}} movement, editing "

" vim-easyclip suite {{{ "

" splits delete into cut and delete
Plug 'svermeulen/vim-cutlass'
" change text with yank
Plug 'svermeulen/vim-subversive'
" yank history
Plug 'svermeulen/vim-yoink'

" }}} vim-easyclip suite "

" tpope {{{ "

" enable repeating supported plugin maps with '.'
Plug 'tpope/vim-repeat'
" pairs of handy bracket mappings
Plug 'tpope/vim-unimpaired'
" git wrapper
Plug 'tpope/vim-fugitive'
" increment dates, times & more
Plug 'tpope/vim-speeddating'
" search, substitute and abbreviate
Plug 'tpope/vim-abolish'
" provides ga, show unicode stuff of char under cursor
Plug 'tpope/vim-characterize'
" comment helper
Plug 'tpope/vim-commentary'
" asynchronous build and test dispatcher
Plug 'tpope/vim-dispatch'
" }}} tpope "

" fancy start screen
Plug 'mhinz/vim-startify'
" asks to be placed last, sure
Plug 'ryanoasis/vim-devicons'
call plug#end()

"}}}

"{{{Auto Commands
" Remove any trailing whitespace that is in the file
autocmd BufRead,BufWrite * if ! &bin | silent! %s/\s\+$//ge | endif

" Close vim if the only window left open is NERDTree
autocmd bufenter * if (winnr("$") == 1 && exists("b:NERDTree") && b:NERDTree.isTabTree()) | q | endif
" Close vim if the only window left open is a quickfix window
autocmd WinEnter * if winnr("$") == 1 && &buftype == "quickfix" | q | endif
" winnr("$") how many windows left?

" Resize all windows proportionally when the terminal is resized
" let terminal resize scale the internal windows
autocmd VimResized * :wincmd =

" Set spell for prose
autocmd FileType markdown,tex setlocal spell

autocmd FileType rust let b:dispatch = 'cargo run'

" these files are formatted not with textwidth but into sentences
autocmd FileType vimwiki,latex,tex setlocal formatprg=/home/yigit/.local/bin/sentences

" runs a script that cleans out tex build files whenever I close out of a .tex file.
autocmd VimLeave *.tex !texclear %

" TODO: this will get supported on nvim 0.5.0
" TODO: this too https://www.reddit.com/r/neovim/comments/gxcbui/in_built_lsp_is_amazing/
" augroup highlight_yank
"     autocmd!
"     autocmd TextYankPost * silent! lua require'vim.highlight'.on_yank("IncSearch", 1000)
" augroup END

"}}}

" Functions {{{

function! CreateNote()
    py3 import uuid
    exe "e! " . fnameescape("~/nextcloud/personal_wiki/text/box/" . py3eval('str(uuid.uuid4())[:6]') . ".wiki")
    let l:text="= up =\n\n= down =\n\n= keywords =\n\n"
    put  =l:text
    norm gg
endfunction

function! CreatePaper(citekey)
    exe "e! " . fnameescape("~/nextcloud/personal_wiki/text/papers/" . a:citekey . ".wiki")

    let l:timestap="%date " . strftime("%F")
    let l:text="= Came From =\n\n= Takeaways =\n\n= Might Go To =\n\n"

    put! =l:timestap
    put  =l:text
endfunction

function! CreateReference(citekey)
    exe "e! " . fnameescape("~/nextcloud/personal_wiki/text/reference/" . a:citekey . ".wiki")

    let l:timestap="%date " . strftime("%F")
    let l:text="= Literature Notes =\n\n= Citation =\n\n"

    put! =l:timestap
    put  =l:text
endfunction

" }}} Function "

"{{{Settings

" fix the Target STRING not available
let g:clipboard = {
      \   'name': 'xsel_override',
      \   'copy': {
      \      '+': 'xsel --input --clipboard',
      \      '*': 'xsel --input --primary',
      \    },
      \   'paste': {
      \      '+': 'xsel --output --clipboard',
      \      '*': 'xsel --output --primary',
      \   },
      \   'cache_enabled': 1,
      \ }

" Use deoplete.
let g:deoplete#enable_at_startup = 1
let g:deoplete#sources#biblatex#bibfile = '~/.local/share/vim_biblatex.bib'

" interact with system clipboard
set clipboard+=unnamedplus

" required for yoink/cutlass/subversive interaction
let g:yoinkIncludeDeleteOperations = 1

" Tab stuff
set autoindent
" Use appropriate number of spaces to insert a <Tab>
set expandtab
set shiftwidth=4
set softtabstop=4
set tabstop=8

" Use english for spellchecking, but don't spellcheck by default
set spell spelllang=en_gb
set nospell

" Cool tab completion stuff
set wildmode=list:longest,full
set wildignore=*.o,*.obj,*.class,*.aux,*.lof,*.log,*.lot,*.fls,*.toc,*.fmt,*.fot,*.cb,*.cb2,.*.lb,.dvi,*.xdv,*.bbl,*.bcf,*.blg,*-blx.aux,*-blx.bib,*.run.xml,*.fdb_latexmk,*.synctex,*.synctex(busy),*.synctex.gz,*.synctex.gz(busy),*.pdfsync
let g:NERDTreeRespectWildIgnore = 1
set nojoinspaces

" Keep n lines above/below cursor while scrolling
set scrolloff=4
" line numbers
set number
" fold manually, when i place markers
set foldmethod=marker
" set terminal title
set title
" wrap using 'breakat' character
set linebreak
" new split panes will split to below and right
set splitbelow
set splitright
" highlight the current line, yoc undoes
set cursorline
" current line actual number, rest are relative
set relativenumber
" we are already using airline, don't clobber linter messages
set noshowmode
" jump to the matching bracket briefly
set showmatch
" move freely between buffers
set hidden

" persistent undo
set undodir=~/.vim/undodir
set undofile

" lower case searches ignore case, upper case searches do not
set ignorecase
set smartcase

" https://stackoverflow.com/a/3445040/
" switch case labels
set cinoptions=l1

" https://www.reddit.com/r/vim/comments/7bj837/favorite_console_tools_to_use_with_vim/
if executable('rg')
    set grepprg=rg\ --vimgrep\ --no-heading\ --smart-case
endif

set diffopt=algorithm:patience

let g:float_preview#docked = 1
set completeopt = "menu"

" }}}

"{{{Look and Feel
set termguicolors
colorscheme moonfly
let g:moonflyUndercurls = 0
" }}}

"{{{ Mappings

" Save file as sudo on files that require root permission
cnoremap w!! execute 'silent! write !sudo tee % >/dev/null' <bar> edit!

" Replace ex mode with gq
map Q gq

" Replace all is aliased to S.
nnoremap S :%s//g<Left><Left>

" use esc in :term as well
tnoremap <Esc> <C-\><C-n>

" move between windows in :term
tnoremap <C-h> <C-\><C-n><C-w>h
tnoremap <C-j> <C-\><C-n><C-w>j
tnoremap <C-k> <C-\><C-n><C-w>k
tnoremap <C-l> <C-\><C-n><C-w>l

" call CreatePaper on word below cursor
nnoremap <leader>np gewi[[/papers/<ESC>Ea]]<ESC>bb:call CreatePaper(expand('<cword>'))<CR>

" call CreateReference on word below cursor
nnoremap <leader>nr :call CreateReference(expand('<cword>'))<CR>

" create a new note
nnoremap <leader>nn :call CreateNote()<CR>

" If you like "Y" to work from the cursor to the end of line (which is more
" logical, but not Vi-compatible)
map Y y$

" Open the TagBar Plugin <F3>
nnoremap <silent> <F3> :TagbarToggle<CR>
" Open NERDTree <F4>
nnoremap <silent> <F4> :NERDTreeToggle<CR>
" Fix whole buffer via ALE
nmap <F9> <Plug>(ale_fix)

" these "Ctrl mappings" work well when Caps Lock is mapped to Ctrl
nmap <silent> t<C-n> :TestNearest<CR>
nmap <silent> t<C-f> :TestFile<CR>
nmap <silent> t<C-s> :TestSuite<CR>
nmap <silent> t<C-l> :TestLast<CR>
nmap <silent> t<C-g> :TestVisit<CR>

" Edit vimrc \ev
nnoremap <silent> <Leader>ev :tabnew<CR>:e ~/.config/nvim/init.vim<CR>
" jump to buffer
nnoremap <leader>b :ls<cr>:b<space>

" Up and down are more logical with g..
nnoremap <silent> k gk
nnoremap <silent> j gj
inoremap <silent> <Up> <Esc>gka
inoremap <silent> <Down> <Esc>gja

" quicker window movement
nnoremap <C-j> <C-w>j
nnoremap <C-k> <C-w>k
nnoremap <C-h> <C-w>h
nnoremap <C-l> <C-w>l

" Disable highlight when <leader><cr> is pressed
nnoremap <silent> <Leader><cr> :noh<cr>
" Space used to toggle folds, now it's x (because x is d)
nnoremap <space> "_x

" checkmarks on vimwiki
nmap <Leader>v <Plug>VimwikiToggleListItem
" add/increase header level
nmap <Leader>a <Plug>VimwikiAddHeaderLevel

" sneak using grave, s is for sandwich
nmap ` <Plug>Sneak_s
nmap <leader>` <Plug>Sneak_S
nnoremap ' `

" separate cut and delete
nnoremap x d
xnoremap x d
nnoremap xx dd
nnoremap X D

" use the special yoink paste
nmap p <plug>(YoinkPaste_p)
nmap P <plug>(YoinkPaste_P)

" substitute from yank
nmap <leader>ys <plug>(SubversiveSubstitute)
nmap <leader>yss <plug>(SubversiveSubstituteLine)
nmap <leader>yS <plug>(SubversiveSubstituteToEndOfLine)

" substitute over range
nmap <leader>s <plug>(SubversiveSubstituteRange)
xmap <leader>s <plug>(SubversiveSubstituteRange)
nmap <leader>ss <plug>(SubversiveSubstituteWordRange)

" subvert over range
nmap <leader><Leader>s <plug>(SubversiveSubvertRange)
xmap <leader><leader>s <plug>(SubversiveSubvertRange)
nmap <leader><leader>ss <plug>(SubversiveSubvertWordRange)

" iterate over yank list
nmap <c-n> <plug>(YoinkPostPasteSwapBack)
nmap <c-p> <plug>(YoinkPostPasteSwapForward)

" change into pwd of current directory
nnoremap <leader>cd :cd %:p:h<CR>:pwd<CR>
inoremap <silent> <Leader>fn <C-R>=expand("%:t:r")<CR>
nnoremap <silent> <Leader>fn :put! =expand('%:t:r')<CR>

" press \g and start writing prose
map <leader>g :Goyo<CR>
"}}}

"{{{Tagbar
let g:tagbar_autofocus = 1
let g:tagbar_compact = 1
let g:tagbar_sort = 0
let g:tagbar_width = 25
"}}}

"{{{ Airline
let g:airline_powerline_fonts = 1
let g:airline#extensions#tabline#formatter = 'unique_tail'
let g:airline#extensions#tabline#enabled = 1
let g:airline_mode_map = {}
let g:airline_mode_map['ic'] = 'INSERT'

if !exists('g:airline_symbols')
    let g:airline_symbols = {}
endif

let g:airline_left_sep = ''
let g:airline_left_alt_sep = ''
let g:airline_right_sep = ''
let g:airline_right_alt_sep = ''

"}}}

"{{{ Ale
let g:ale_sign_error = '✗'
let g:ale_sign_warning = '⚑'
let g:ale_lint_on_text_changed = 'insert'
let g:ale_lint_on_enter = 0
let g:ale_pattern_options = {'\.wiki$': {'ale_enabled': 0}}
"}}}

"{{{ Ledger
let g:ledger_maxwidth = 48
let g:ledger_fillstring = '   ~'
"}}}

"{{{ UltiSnips
set runtimepath+=~/.vim/my-snippets/
let g:UltiSnipsEditSplit = "vertical"
let g:UltiSnipsSnippetsDir = $HOME.'/.vim/my-snippets/UltiSnips'

" ctrl + l expands the snippet, c + j/k navigates placeholders
let g:UltiSnipsExpandTrigger = "<C-l>"
let g:UltiSnipsEnableSnipMate = "1"
"}}}

"{{{ vim-startify
function! StartifyEntryFormat()
    return 'WebDevIconsGetFileTypeSymbol(absolute_path) ." ". entry_path'
endfunction

let entry_format = "'   ['. index .']'. repeat(' ', (3 - strlen(index)))"

if exists('*WebDevIconsGetFileTypeSymbol')  " support for vim-devicons
    let entry_format .= ". WebDevIconsGetFileTypeSymbol(entry_path) .' '.  entry_path"
else
    let entry_format .= '. entry_path'
endif

let g:ascii = [
            \'             |                    ',
            \'\ \  \ / -_) |  _|  _ \  ` \   -_)',
            \' \_/\_/\___|_|\__|\___/_|_|_|\___|',
            \ '',
            \]

let g:startify_custom_header =
            \ 'map(g:ascii + startify#fortune#boxed(), "\"   \".v:val")'

"}}}

"{{{ vimwiki
let g:vimwiki_list = [{'path': '/home/yigit/nextcloud/personal_wiki/text',
            \ 'path_html': '/home/yigit/nextcloud/personal_wiki/html',
            \ 'auto_generate_tags': 1,
            \ 'automatic_nested_syntaxes': 1,
            \ 'template_path': '/home/yigit/nextcloud/personal_wiki/templates',
            \ 'template_default': 'default_template',
            \ 'template_ext': '.html',
            \ 'auto_export': 1,
            \ 'auto_tags': 1}]
let g:vimwiki_global_ext = 0
let g:vimwiki_hl_headers = 1
"}}}

" {{{ vimtex
let g:vimtex_view_method='zathura'
let g:vimtex_quickfix_mode=0
" }}}

" {{{ Gutentags
let g:gutentags_add_default_project_roots = 0
let g:gutentags_project_root = ['Makefile', '.git']
let g:gutentags_generate_on_new = 1
let g:gutentags_generate_on_missing = 1
let g:gutentags_generate_on_write = 1
let g:gutentags_generate_on_empty_buffer = 0
" }}}

" vim-slime {{{
let g:slime_target = "tmux"
let g:slime_paste_file = "$HOME/.slime_paste"
let g:slime_default_config = {"socket_name": get(split($TMUX, ","), 0), "target_pane": "{last}"}
let g:slime_no_mappings = 1
nmap <c-CR> <Plug>SlimeParagraphSend
" }}} Slime

" devicons {{{ "
let g:WebDevIconsUnicodeDecorateFileNodesExtensionSymbols = {} " needed
let g:WebDevIconsUnicodeDecorateFileNodesExtensionSymbols['wiki'] = '📔'
" }}} devicons "

" beacon {{{ "
let g:beacon_size = 100
let g:beacon_shrink = 0
highlight Beacon guibg=red ctermbg=15
" }}} beacon "

let g:tq_enabled_backends = ["mthesaur_txt"]
let g:tq_truncation_on_relavance = 0