2018-09-01 12:45:39 +02:00
|
|
|
call plug#begin('~/.vim/plugged')
|
|
|
|
|
2018-09-02 07:12:07 +02:00
|
|
|
" Dependencies
|
|
|
|
Plug 'roxma/vim-hug-neovim-rpc'
|
|
|
|
Plug 'roxma/nvim-yarp'
|
|
|
|
|
2021-04-05 13:46:01 +02:00
|
|
|
Plug 'andymass/vim-matchup'
|
|
|
|
|
|
|
|
" Accept .editorconfig
|
|
|
|
Plug 'editorconfig/editorconfig-vim'
|
|
|
|
|
2018-09-02 07:12:07 +02:00
|
|
|
" Miscellaneous Plugins
|
2021-04-05 13:46:01 +02:00
|
|
|
|
2019-11-17 20:12:26 +01:00
|
|
|
" Airline style status bar
|
2018-09-01 12:45:39 +02:00
|
|
|
Plug 'vim-airline/vim-airline'
|
|
|
|
Plug 'vim-airline/vim-airline-themes'
|
2021-04-05 13:46:01 +02:00
|
|
|
|
2019-11-17 20:12:26 +01:00
|
|
|
" Highlight and fix trailing whitespace
|
2018-09-01 12:45:39 +02:00
|
|
|
Plug 'ntpeters/vim-better-whitespace'
|
2021-04-05 13:46:01 +02:00
|
|
|
|
2019-11-17 20:12:26 +01:00
|
|
|
" Yank History Cycling on meta-[shift]-p
|
2018-09-01 12:45:39 +02:00
|
|
|
Plug 'maxbrunsfeld/vim-yankstack'
|
2021-04-05 13:46:01 +02:00
|
|
|
|
2019-11-17 20:12:26 +01:00
|
|
|
" Auto indent
|
2018-09-01 12:45:39 +02:00
|
|
|
Plug 'yggdroot/indentline'
|
2021-04-05 13:46:01 +02:00
|
|
|
|
2019-11-17 20:12:26 +01:00
|
|
|
" Python folding
|
2018-09-01 12:45:39 +02:00
|
|
|
Plug 'tmhedberg/simpylfold'
|
2021-04-05 13:46:01 +02:00
|
|
|
|
2019-11-17 20:12:26 +01:00
|
|
|
" Update folding less often
|
2018-09-01 12:45:39 +02:00
|
|
|
Plug 'Konfekt/fastfold'
|
2021-04-05 13:46:01 +02:00
|
|
|
|
2019-11-17 20:12:26 +01:00
|
|
|
" Use FZF for browsing vim buffers
|
2018-09-01 12:55:15 +02:00
|
|
|
Plug 'junegunn/fzf.vim'
|
2021-04-05 13:46:01 +02:00
|
|
|
|
2019-11-17 20:12:26 +01:00
|
|
|
" Markdown support
|
2018-09-01 12:55:15 +02:00
|
|
|
Plug 'plasticboy/vim-markdown'
|
2021-04-05 13:46:01 +02:00
|
|
|
|
2019-11-17 20:12:26 +01:00
|
|
|
" Window resizing c-w [<>-+=_|]
|
2018-09-01 12:55:15 +02:00
|
|
|
Plug 'roxma/vim-window-resize-easy'
|
2021-04-05 13:46:01 +02:00
|
|
|
|
2019-11-17 20:12:26 +01:00
|
|
|
" Regex highlighting and in buffer live replacement
|
2018-09-01 12:55:15 +02:00
|
|
|
Plug 'markonm/traces.vim'
|
2021-04-05 13:46:01 +02:00
|
|
|
|
2019-11-17 20:12:26 +01:00
|
|
|
" Better comments
|
2018-09-01 12:55:15 +02:00
|
|
|
Plug 'scrooloose/nerdcommenter'
|
2021-04-05 13:46:01 +02:00
|
|
|
|
2019-11-17 20:12:26 +01:00
|
|
|
" Work on brackets in pairs
|
|
|
|
Plug 'jiangmiao/auto-pairs'
|
2018-09-02 07:12:07 +02:00
|
|
|
|
|
|
|
" NERDtree + Plugins
|
2018-09-01 12:55:15 +02:00
|
|
|
Plug 'scrooloose/nerdtree'
|
2018-09-01 12:45:39 +02:00
|
|
|
Plug 'jistr/vim-nerdtree-tabs'
|
2018-09-01 12:55:15 +02:00
|
|
|
Plug 'Xuyuanp/nerdtree-git-plugin'
|
2021-04-05 01:48:48 +02:00
|
|
|
Plug 'ryanoasis/vim-devicons'
|
|
|
|
|
2018-09-02 07:12:07 +02:00
|
|
|
" Compilers
|
2018-09-01 12:45:39 +02:00
|
|
|
Plug 'xuhdev/singlecompile'
|
2018-09-01 12:55:15 +02:00
|
|
|
|
2018-09-02 07:12:07 +02:00
|
|
|
" Autocomplete
|
2019-11-17 20:12:26 +01:00
|
|
|
Plug 'neoclide/coc.nvim', {'tag': '*', 'branch': 'release'}
|
2021-04-05 13:46:01 +02:00
|
|
|
Plug 'neoclide/coc-snippets'
|
|
|
|
Plug 'honza/vim-snippets'
|
2019-11-17 20:12:26 +01:00
|
|
|
|
|
|
|
" Coc extensions
|
|
|
|
Plug 'Maxattax97/coc-ccls'
|
|
|
|
Plug 'iamcco/coc-gitignore'
|
|
|
|
Plug 'neoclide/coc-python'
|
|
|
|
Plug 'neoclide/coc-json'
|
|
|
|
Plug 'neoclide/coc-java'
|
2018-09-01 12:55:15 +02:00
|
|
|
|
2018-09-02 07:12:07 +02:00
|
|
|
" Language Specific stuff (Language Plugins, Linters, etc)
|
2019-11-17 20:12:26 +01:00
|
|
|
" Asynchronous lint engine
|
2018-09-01 12:45:39 +02:00
|
|
|
Plug 'w0rp/ale'
|
2019-11-17 20:12:26 +01:00
|
|
|
" Python
|
2018-09-06 23:15:56 +02:00
|
|
|
Plug 'hdima/python-syntax'
|
2018-09-01 12:45:39 +02:00
|
|
|
Plug 'fs111/pydoc.vim'
|
2018-09-01 12:55:15 +02:00
|
|
|
Plug 'Vimjas/vim-python-pep8-indent'
|
|
|
|
Plug 'vim-scripts/javacomplete'
|
|
|
|
Plug 'udalov/kotlin-vim'
|
|
|
|
Plug 'xuhdev/vim-latex-live-preview'
|
2018-09-01 12:45:39 +02:00
|
|
|
Plug 'pearofducks/ansible-vim'
|
2018-10-25 09:46:40 +02:00
|
|
|
Plug 'justinmk/vim-syntax-extra'
|
2021-04-05 13:46:01 +02:00
|
|
|
" Rust
|
|
|
|
Plug 'timonv/vim-cargo'
|
|
|
|
Plug 'rust-lang/rust.vim'
|
|
|
|
|
|
|
|
Plug 'cespare/vim-toml'
|
|
|
|
|
2018-09-01 12:55:15 +02:00
|
|
|
|
2018-09-02 07:12:07 +02:00
|
|
|
" Git integration
|
2018-09-01 12:55:15 +02:00
|
|
|
Plug 'airblade/vim-gitgutter'
|
|
|
|
Plug 'tpope/vim-fugitive'
|
2018-09-06 23:15:56 +02:00
|
|
|
Plug 'mattn/gist-vim'
|
|
|
|
" dependency
|
|
|
|
Plug 'mattn/webapi-vim'
|
2018-09-01 12:45:39 +02:00
|
|
|
|
2021-02-12 17:26:28 +01:00
|
|
|
Plug 'godlygeek/tabular'
|
|
|
|
Plug 'plasticboy/vim-markdown'
|
|
|
|
|
2021-04-05 03:41:52 +02:00
|
|
|
Plug 'majutsushi/tagbar'
|
2021-04-05 20:06:40 +02:00
|
|
|
Plug 'jremmen/vim-ripgrep'
|
2021-04-05 03:41:52 +02:00
|
|
|
|
2018-09-01 12:45:39 +02:00
|
|
|
call plug#end()
|