2017-04-12 15:29:38 +02:00
|
|
|
function! Cond(cond, ...)
|
2018-11-22 18:23:20 +01:00
|
|
|
let opts=get(a:000, 0, {})
|
2017-04-12 15:29:38 +02:00
|
|
|
return a:cond ? opts : extend(opts, { 'on': [], 'for': [] })
|
|
|
|
endfunction
|
|
|
|
|
2017-04-12 14:51:01 +02:00
|
|
|
call plug#begin('~/.vim/plugged')
|
2017-02-11 11:06:28 +01:00
|
|
|
|
|
|
|
" colorschemes
|
2018-11-22 18:23:20 +01:00
|
|
|
Plug 'lifepillar/vim-solarized8'
|
2017-02-11 11:06:28 +01:00
|
|
|
|
2018-11-22 18:23:20 +01:00
|
|
|
" editorconfig support
|
2017-04-12 14:51:01 +02:00
|
|
|
Plug 'editorconfig/editorconfig-vim'
|
2017-02-11 11:06:28 +01:00
|
|
|
|
2018-11-22 18:23:20 +01:00
|
|
|
" (un)comment
|
|
|
|
Plug 'tpope/vim-commentary'
|
|
|
|
|
|
|
|
" handle surroundings
|
|
|
|
Plug 'tpope/vim-surround'
|
|
|
|
|
|
|
|
" make plugin commands repeatable
|
|
|
|
Plug 'tpope/vim-repeat'
|
|
|
|
|
2019-04-28 21:28:23 +02:00
|
|
|
" autodetect tabwidth
|
|
|
|
Plug 'tpope/vim-sleuth'
|
|
|
|
|
2018-11-22 18:23:20 +01:00
|
|
|
" dispatch into tmux panes
|
|
|
|
Plug 'tpope/vim-dispatch', Cond(!empty($TMUX))
|
|
|
|
|
|
|
|
" awesome git plugin
|
|
|
|
Plug 'tpope/vim-fugitive'
|
|
|
|
|
|
|
|
" create gist from within vim
|
|
|
|
Plug 'mattn/gist-vim' | Plug 'mattn/webapi-vim'
|
|
|
|
|
|
|
|
" autoclose quotes and brackets
|
|
|
|
Plug 'Raimondi/delimitMate'
|
|
|
|
let delimitMate_expand_cr=1
|
|
|
|
|
|
|
|
" async linting and making
|
|
|
|
Plug 'neomake/neomake'
|
|
|
|
|
|
|
|
" tmux support if inside tmux
|
|
|
|
" run cargo in tmux using vimux
|
|
|
|
Plug 'benmills/vimux', Cond(!empty($TMUX)) | Plug 'jtdowney/vimux-cargo', { 'for': 'rust' }
|
|
|
|
" vimux mappings
|
|
|
|
" Prompt for a command
|
|
|
|
map <Leader>vp :VimuxPromptCommand<CR>
|
|
|
|
" Prompt for a make command
|
|
|
|
map <Leader>vm :VimuxPromptCommand("make ")<CR>
|
|
|
|
" Inspect runner pane
|
|
|
|
map <Leader>vi :VimuxInspectRunner<CR>
|
|
|
|
" Close runner
|
|
|
|
map <Leader>vq :VimuxCloseRunner<CR>
|
|
|
|
" Rerun last command
|
|
|
|
map <Leader>vv :VimuxRunLastCommand<CR>
|
|
|
|
" Stop running command
|
|
|
|
map <Leader>vs :VimuxInterruptRunner<CR>
|
|
|
|
|
|
|
|
" distraction free writing
|
|
|
|
Plug 'junegunn/goyo.vim'
|
|
|
|
" close Goyo *and* vim with :q
|
|
|
|
function! s:goyo_enter()
|
|
|
|
let b:quitting=0
|
|
|
|
let b:quitting_bang=0
|
|
|
|
autocmd QuitPre <buffer> let b:quitting=1
|
|
|
|
cabbrev <buffer> q! let b:quitting_bang=1 <bar> q!
|
|
|
|
endfunction
|
2017-04-12 14:51:01 +02:00
|
|
|
|
2018-11-22 18:23:20 +01:00
|
|
|
function! s:goyo_leave()
|
|
|
|
" Quit Vim if this is the only remaining buffer
|
|
|
|
if b:quitting && len(filter(range(1, bufnr('$')), 'buflisted(v:val)')) == 1
|
|
|
|
if b:quitting_bang
|
|
|
|
qa!
|
|
|
|
else
|
|
|
|
qa
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
endfunction
|
|
|
|
autocmd! User GoyoEnter call <SID>goyo_enter()
|
|
|
|
autocmd! User GoyoLeave call <SID>goyo_leave()
|
2017-04-12 14:51:01 +02:00
|
|
|
|
2018-11-22 18:23:20 +01:00
|
|
|
" highlight unwanted whitespace
|
|
|
|
Plug 'bronson/vim-trailing-whitespace'
|
2017-05-12 14:20:02 +02:00
|
|
|
|
2018-11-22 18:23:20 +01:00
|
|
|
" fuzzy file finder
|
|
|
|
Plug 'ctrlpvim/ctrlp.vim'
|
2017-02-11 11:06:28 +01:00
|
|
|
|
2018-11-22 18:23:20 +01:00
|
|
|
" replace text with the content of a register
|
|
|
|
Plug 'vim-scripts/ReplaceWithRegister'
|
2017-02-11 11:06:28 +01:00
|
|
|
|
2018-11-22 18:23:20 +01:00
|
|
|
" paste with indent adjusted to context
|
|
|
|
Plug 'sickill/vim-pasta'
|
2017-04-12 15:54:04 +02:00
|
|
|
|
2018-11-22 18:23:20 +01:00
|
|
|
" rust support
|
|
|
|
Plug 'rust-lang/rust.vim', { 'for': 'rust' }
|
|
|
|
" run rustfmt when saving a file
|
|
|
|
let g:rustfmt_autosave=1
|
2017-04-15 14:41:41 +02:00
|
|
|
|
2019-06-30 15:58:57 +02:00
|
|
|
" " deoplete for auto completion
|
|
|
|
" if has('nvim')
|
|
|
|
" Plug 'Shougo/deoplete.nvim', { 'do': ':UpdateRemotePlugins' }
|
|
|
|
" else
|
|
|
|
" Plug 'Shougo/deoplete.nvim'
|
|
|
|
" Plug 'roxma/nvim-yarp'
|
|
|
|
" Plug 'roxma/vim-hug-neovim-rpc'
|
|
|
|
" endif
|
|
|
|
" let g:deoplete#enable_at_startup=1
|
|
|
|
" " deoplete completion for rust
|
|
|
|
" Plug 'sebastianmarkow/deoplete-rust'
|
|
|
|
" let g:deoplete#sources#rust#racer_binary='/usr/bin/racer'
|
|
|
|
" " let g:deoplete#sources#rust#rust_source_path = '$(rustc --print sysroot)/lib/rustlib/src/rust/src'
|
|
|
|
" if executable('rustc')
|
|
|
|
" " if src installed via rustup, we can get it by running
|
|
|
|
" " rustc --print sysroot then appending the rest of the path
|
|
|
|
" let rustc_root = systemlist('rustc --print sysroot')[0]
|
|
|
|
" let rustc_src_dir = rustc_root . '/lib/rustlib/src/rust/src'
|
|
|
|
" if isdirectory(rustc_src_dir)
|
|
|
|
" let g:deoplete#sources#rust#rust_source_path = rustc_src_dir
|
|
|
|
" endif
|
|
|
|
" endif
|
|
|
|
|
|
|
|
Plug 'neoclide/coc.nvim', {'branch': 'release'}
|
2017-04-15 14:41:41 +02:00
|
|
|
|
2018-11-22 18:23:20 +01:00
|
|
|
" Plug 'racer-rust/vim-racer', { 'for': 'rust' } " rust autocomplete
|
|
|
|
" let g:racer_cmd = "/usr/bin/racer"
|
|
|
|
|
|
|
|
" syntax support for many languages
|
|
|
|
Plug 'sheerun/vim-polyglot'
|
|
|
|
" disable latex in polyglot to use vimtex
|
|
|
|
let g:polyglot_disabled=['latex']
|
2017-04-15 14:41:41 +02:00
|
|
|
|
2018-11-22 18:23:20 +01:00
|
|
|
" latex support
|
2017-04-12 16:19:29 +02:00
|
|
|
Plug 'lervag/vimtex'
|
|
|
|
|
2018-11-22 18:23:20 +01:00
|
|
|
" Vimwiki
|
|
|
|
Plug 'vimwiki/vimwiki'
|
|
|
|
let g:vimwiki_list=[{'path': '~/Dokumente/notes',
|
|
|
|
\ 'syntax': 'markdown',
|
|
|
|
\ 'ext': '.md'}]
|
|
|
|
|
|
|
|
Plug 'antoyo/vim-licenses'
|
|
|
|
let g:licenses_copyright_holders_name='Brandl, Valentin <mail@vbrandl.net>'
|
|
|
|
let g:licenses_authors_name='Brandl, Valentin <mail@vbrandl.net>'
|
|
|
|
|
|
|
|
" haskell support
|
|
|
|
Plug 'neovimhaskell/haskell-vim'
|
|
|
|
|
|
|
|
" elm support
|
2019-08-12 18:07:12 +02:00
|
|
|
" Plug 'elmcast/elm-vim'
|
2018-11-22 18:23:20 +01:00
|
|
|
|
2019-04-28 18:59:59 +02:00
|
|
|
" clojure support
|
|
|
|
Plug 'tpope/vim-fireplace'
|
|
|
|
|
|
|
|
" purescript
|
|
|
|
Plug 'frigoeu/psc-ide-vim'
|
|
|
|
|
2019-05-27 22:51:09 +02:00
|
|
|
" racket
|
2019-08-12 18:07:12 +02:00
|
|
|
" Plug 'wlangstroth/vim-racket'
|
|
|
|
" Plug 'luochen1990/rainbow'
|
|
|
|
" let g:rainbow_active = 1
|
|
|
|
" Plug 'vim-scripts/scribble.vim'
|
2019-05-27 22:51:09 +02:00
|
|
|
|
2018-11-22 18:23:20 +01:00
|
|
|
"" nerdtree file manager
|
|
|
|
"Plug 'scrooloose/nerdtree', { 'on': ['NERDTreeToggle', 'NERDTreeFind'] }
|
|
|
|
"Plug 'Xuyuanp/nerdtree-git-plugin', { 'on': ['NERDTreeToggle', 'NERDTreeFind'] }
|
|
|
|
"" Toggle NERDTree
|
|
|
|
"nmap <silent> <leader>k :NERDTreeToggle<cr>
|
|
|
|
"" expand to the path of the file in the current buffer
|
|
|
|
"nmap <silent> <leader>y :NERDTreeFind<cr>
|
|
|
|
""autocmd BufWinEnter * NERDTreeMirror
|
|
|
|
"let NERDTreeShowHidden=1
|
|
|
|
""let NERDTreeDirArrowExpandable = '▷'
|
|
|
|
""let NERDTreeDirArrowCollapsible = '▼'
|
|
|
|
|
|
|
|
"Plug 'ervandew/supertab' " simple autocomplete
|
|
|
|
|
|
|
|
"Plug 'SirVer/ultisnips'
|
|
|
|
"Plug 'honza/vim-snippets'
|
|
|
|
|
|
|
|
" Python
|
|
|
|
"Plug 'davidhalter/jedi-vim', { 'for': 'python' } " python autocomplete
|
|
|
|
|
|
|
|
" Plug 'artur-shaik/vim-javacomplete2'
|
|
|
|
|
2017-04-12 14:51:01 +02:00
|
|
|
call plug#end()
|