" General config {{{ " " Most acronyms are unreadable, but they keep the overview " I have to do a quick :h lookup for most of these anyway. se nocp " Disable vi incompatibility filet plugin indent on " Filetype recognition se enc=utf8 " se hid " Allow hiding unsaved buffers se tf " Fast tty se ut=300 " 300ms for update time se to tm=200 ttm=5 " Timeouts se shm+=c " ... se ul=500 hi=500 " History and undo se nu rnu scl=number " Line numbers & signs se nowrap se bs=indent,eol,start " Indentation se ai ts=2 sts=2 sw=2 et " Indentation se is ic scs hls " Search se lz " Only essential redraws se nobk nowb noswf " No backups se vi='20,\"101 " Max 100 lines in registers se novb " Bell se cole=0 cocu="" " Conceal se cb=unnamedplus " Clipboard se fcs+=vert:│ " Cleaner split separator (tmux style) set list set lcs=trail:·,tab:→\ ,nbsp:␣ " Whitespace rendering set ar " Autoread " Functions ____________________________ " Toggle line numbers fu! ToggleLineNumbers() set nu! rnu! " toggle: no numbers - relative nummbers endfu " https://alok.github.io/2018/04/26/using-vim-s-conceal-to-make-languages-more-tolerable/ fu! ToggleConceal() if (&cole == 0) | se cole =2 | else | set cole =0 | endif endfu " Insert date fu! Today() :put =strftime('%d %b %Y') endfu " Add command line functions names com! -nargs=0 Today :call Today() com! -nargs=0 ToggleLineNumbers :call ToggleLineNumbers() com! -nargs=0 ToggleConceal :call ToggleConceal() " Setup Man command for reading man pages if exists(":Man") != 2 source $VIMRUNTIME/ftplugin/man.vim endif " Keybindings """"""""""""" " Leader keys nn let mapleader = " " let maplocalleader = ";" " Splits & navigation nm ss :spw| " Split horizontal nm sv :vsw| " Split vertical nn sw w| " Navigate splits nn sh h| " " nn sj j| " " nn sk k| " " nn sl l| " " nn sH 8<| " Resize splits nn sJ 8-| " " nn sK 8+| " " nn sL 8>| " " nn s= =| " Equalize splits " Open nn sb :Lex| " File tree nn t :term| " Open terminal nn o :!xdg-open http://localhost:8080/%:r.html & " Remaps ino jj | " Normal now nn | " Hard mode nn | " " nn | " " nn | " " ino | " " ino | " " ino | " " ino | " " " Search nn / :noh nn f :Ag " Line numbers nn n :call ToggleRnu() " Vim configuration nn ec :split $MYVIMRC nn so :so % " Plugins """"""""" call plug#begin() " Coc Plug 'neoclide/coc.nvim', {'branch': 'release'} " General Plug 'tpope/vim-commentary' Plug 'machakann/vim-sandwich' Plug 'junegunn/fzf', { 'do': { -> fzf#install() } } Plug 'junegunn/fzf.vim' " JS and TypeScript Plug 'pangloss/vim-javascript', { 'for': ['javascript', 'javascript.jsx'] } Plug 'leafgarland/typescript-vim', { 'for': ['typescript', 'typescript.tsx'] } Plug 'peitalin/vim-jsx-typescript', { 'for': ['typescript.tsx'] } Plug 'evanleck/vim-svelte', {'branch': 'main'} " JSON with comments Plug 'neoclide/jsonc.vim' " LaTeX & markdown Plug 'lervag/vimtex' " Wiki Plug 'lervag/wiki.vim' Plug 'hektor/taskwiki' " Markdown Plug 'vim-pandoc/vim-pandoc' Plug 'vim-pandoc/vim-pandoc-syntax' " TidalCycles Plug 'supercollider/scvim' Plug 'tidalcycles/vim-tidal' call plug#end() " Plugin config """"""""""""""" " Coc let g:coc_global_extensions = [ \'coc-eslint', \'coc-prettier', \'coc-tsserver', \'coc-python', \'coc-html', \'coc-emmet', \'coc-css', \'coc-svg', \'coc-svelte', \'coc-json', \'coc-markdownlint', \'coc-yaml', \'coc-snippets', \'coc-clangd' \] " Autocomplete imap (coc-snippets-expand) nn es :CocCommand snippets.editSnippets ino pumvisible() ? "\" : \ coc#refresh() ino pumvisible() ? "\" : "k" ino complete_info()["selected"] != "-1" ? "\" : "\u\" " Show doccumentation fu! s:show_documentation() if (index(['vim','help'], &filetype) >= 0) execute 'h '.expand('') else call CocAction('doHover') endif endfunction nnoremap K :call show_documentation() " Code action on cursor position nm do (coc-codeaction) " Coc statusline se statusline^=%{coc#status()}%{get(b:,'coc_current_function','')} " Prettier command com! -nargs=0 Prettier :CocCommand prettier.formatFile " LaTex let g:vimtex_view_method='zathura' let g:tex_flavor='latex' let g:tex_conceal='abdmg' let g:vimtex_quickfix_mode=0 " Markdown au FileType markdown setl tw=80 fo+=t " Wrap markdown to 80 characters " Comments xm c Commentary nm c Commentary nm cc CommentaryLine " FZF let g:fzf_layout = {'window': { 'width': 0.62, 'height': 0.62}} let g:ag_working_path_mode="r" let $FZF_DEFAULT_COMMAND = 'ag --hidden --ignore .git -g ""' " respect gitignore se wildignore+=*/node_modules/*,*/tmp/*,*.so,*.swp,*.zip " " ignore these 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', 'Comment'], \ 'border': ['fg', 'Comment'], \ 'prompt': ['fg', 'Conditional'], \ 'pointer': ['fg', 'Exception'], \ 'marker': ['fg', 'Keyword'], \ 'spinner': ['fg', 'Label'], } let g:ag_working_path_mode="r" " }}} " `vim-pandoc/vim-pandoc` {{{ " `vim-pandoc/vim-pandoc-syntax` au FileType pandoc call pandoc#completion#Init() let g:pandoc#filetypes#pandoc_markdown=0 let g:pandoc#spell#enabled=0 let g:pandoc#spell#default_langs=['en_us', 'nl_be'] let g:pandoc#syntax#conceal#urls=1 let g:pandoc#syntax#conceal#blacklist=[] let g:pandoc#formatting#mode='a' let g:pandoc#formatting#textwidth=90 let g:pandoc#modules#disabled = ["formatting", "dashes", "yaml", "metadata"] " }}} " `lervag/wiki.vim` {{{ " Only load wiki.vim for wiki directory let g:wiki_global_load=0 let g:wiki_root='~/.wiki' let g:wiki_index_name='index' let g:wiki_zotero_root='~/doc/Zotero' let g:wiki_filetypes=['md'] let g:wiki_completion_case_sensitive=0 " Mappings " Remap p augroup filetype_pandoc autocmd! au BufRead,BufNewFile /home/h/.wiki/*.md nn p :WikiFzfPages au BufRead,BufNewFile /home/h/.wiki/*.md nnoremap sv empty(g:wiki#link#get()) ? ':vsw' : '(wiki-link-follow-vsplit)' au BufRead,BufNewFile /home/h/.wiki/*.md nnoremap ss empty(g:wiki#link#get()) ? ':spw' : '(wiki-link-follow-split)' augroup END " If we are on a wiki link " let g:wiki_file_handlenmap r " Links let g:wiki_link_extension='.md' " Do not automatically transform to link, use `wf` for this let g:wiki_link_toggle_on_follow=0 let g:wiki_link_target_type='md' let g:wiki_map_text_to_link='Slugify' " E.g. transform `My link` into `[My link](my-link.md)` function Slugify(text) abort return [substitute(tolower(a:text), '\s\+', '-', 'g'), a:text] endfunction vmap wf (wiki-link-toggle-visual) " Automatically save when navigation let g:wiki_write_on_nav=1 " }}} " `tools-life/taskwiki` {{{ let g:taskwiki_taskrc_location='/home/h/.config/task/taskrc' let g:taskwiki_disable_concealcursor=1 let g:taskwiki_dont_preserve_folds=1 let g:taskwiki_dont_fold=1 " }}} " JS and TypeScript let g:javascript_plugin_jsdoc = 1 " jsdoc syntax highlighting let g:javascript_plugin_flow = 1 " flow syntax highlighting let g:javascript_conceal_function = "ƒ" let g:javascript_conceal_return = "⇖" let g:svelte_indent_script = 0 let g:svelte_indent_style = 0 " JSONC (see https://github.com/neoclide/jsonc.vim/pull/9") autocmd BufNewFile,BufRead */.vscode/*.json setlocal filetype=jsonc " SuperCollider au BufEnter,BufWinEnter,BufNewFile,BufRead *.sc,*.scd se filetype=supercollider au Filetype supercollider packadd scvim " Tidalcycles (sclang and vim-tidal) let g:tidal_default_config = {"socket_name": "default", "target_pane": "tidal:1.1"} " Plugin keybindings """""""""""""""""""" " FZF nn :FZF nn p :FZF nn b :Buffers nn h :History let g:fzf_action = { \ 'ctrl-t': 'tab split', \ 'ctrl-s': 'split', \ 'ctrl-v': 'vsplit' \} " Insert path completion ino fzf#vim#complete#path('rg --files --sort path') " }}} " Color theme & statusline {{{ " se ls=2 se stl=\ %0*%n se stl+=\ %m se stl+=\ %y%0* se stl+=\ %<%F se stl+=\ %0*%=%5l%* se stl+=%0*/%L%* colo yang " }}} " Quick hacks {{{ " fu! Compile() if expand('%:e') == "md" :silent exec "!pandoc % -s -o /tmp/op.pdf &" endif endfu fu! Preview() :call Compile() :silent exec "!zathura /tmp/op.pdf &" endfu " VIM config hot reload au! bufwritepost .vimrc source $HOME/.vimrc " TODO: separate to filetype specific files " JS " Jump between `=` and `;` au FileType javascript set mps+==:; " JSONC (see https://github.com/neoclide/jsonc.vim/pull/9") au BufNewFile,BufRead */.vscode/*.json setlocal filetype=jsonc " Hacky way to pass on active note to script for automated for HTML preview au BufEnter /home/h/.wiki/*.md silent exe '!echo %:t > /home/h/.local/share/nvim/plugged/bro/current-page' " }}} highlight QuickScopeSecondary cterm=underline highlight QuickScopePrimary ctermbg=253 ctermfg=232 cterm=none highlight Pmenu ctermfg=232 function! SynGroup() let l:s = synID(line('.'), col('.'), 1) echo synIDattr(l:s, 'name') . ' -> ' . synIDattr(synIDtrans(l:s), 'name') endfun com! -nargs=0 Syn :call SynGroup() " Taken from /usr/share/vim/vim90/defaults.vim augroup vimStartup au! " When editing a file, always jump to the last known cursor position. " Don't do it when the position is invalid, when inside an event handler " (happens when dropping a file on gvim) and for a commit message (it's " likely a different one than last time). autocmd BufReadPost * \ if line("'\"") >= 1 && line("'\"") <= line("$") && &ft !~# 'commit' \ | exe "normal! g`\"" \ | endif augroup END " Highlight todo's for every filetype " https://stackoverflow.com/questions/11709965/vim-highlight-the-word-todo-for-every-filetype augroup HiglightTODO autocmd! autocmd WinEnter,VimEnter * :silent! call matchadd('Todo', 'TODO', -1) autocmd WinEnter,VimEnter * :silent! call matchadd('Todo', 'FIXME', -1) autocmd WinEnter,VimEnter * :silent! call matchadd('Todo', 'QUESTION', -1) augroup END