dotfiles/vim/config/plugins.vim

104 lines
2.1 KiB
VimL
Raw Normal View History

call plug#begin('~/.vim/plugged')
" 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'
" Miscellaneous Plugins
2021-04-05 13:46:01 +02:00
2019-11-17 20:12:26 +01:00
" Airline style status bar
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
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
Plug 'maxbrunsfeld/vim-yankstack'
2021-04-05 13:46:01 +02:00
2019-11-17 20:12:26 +01:00
" Auto indent
Plug 'yggdroot/indentline'
2021-04-05 13:46:01 +02:00
2019-11-17 20:12:26 +01:00
" Python folding
Plug 'tmhedberg/simpylfold'
2021-04-05 13:46:01 +02:00
2019-11-17 20:12:26 +01:00
" Update folding less often
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
Plug 'junegunn/fzf.vim'
2021-04-05 13:46:01 +02:00
2019-11-17 20:12:26 +01:00
" Markdown support
Plug 'plasticboy/vim-markdown'
2021-04-05 13:46:01 +02:00
2019-11-17 20:12:26 +01:00
" Window resizing c-w [<>-+=_|]
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
Plug 'markonm/traces.vim'
2021-04-05 13:46:01 +02:00
2019-11-17 20:12:26 +01:00
" Better comments
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'
" NERDtree + Plugins
Plug 'scrooloose/nerdtree'
Plug 'jistr/vim-nerdtree-tabs'
Plug 'Xuyuanp/nerdtree-git-plugin'
Plug 'ryanoasis/vim-devicons'
" Compilers
Plug 'xuhdev/singlecompile'
" 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'
" Language Specific stuff (Language Plugins, Linters, etc)
2019-11-17 20:12:26 +01:00
" Asynchronous lint engine
Plug 'w0rp/ale'
2019-11-17 20:12:26 +01:00
" Python
Plug 'hdima/python-syntax'
Plug 'fs111/pydoc.vim'
Plug 'Vimjas/vim-python-pep8-indent'
Plug 'vim-scripts/javacomplete'
Plug 'udalov/kotlin-vim'
Plug 'xuhdev/vim-latex-live-preview'
Plug 'pearofducks/ansible-vim'
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'
" Git integration
Plug 'airblade/vim-gitgutter'
Plug 'tpope/vim-fugitive'
Plug 'mattn/gist-vim'
" dependency
Plug 'mattn/webapi-vim'
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'
call plug#end()