dotfiles/vim/config/plugins.vim

113 lines
2.3 KiB
VimL
Raw Normal View History

call plug#begin('~/.vim/plugged')
" % works on language specific keywords
2021-04-05 13:46:01 +02:00
Plug 'andymass/vim-matchup'
" Accept .editorconfig
Plug 'editorconfig/editorconfig-vim'
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
" 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
2022-06-05 14:29:35 +02:00
" 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
2022-06-28 02:52:45 +02:00
" Session Management
Plug 'tpope/vim-obsession'
2019-11-17 20:12:26 +01:00
" Work on brackets in pairs
Plug 'jiangmiao/auto-pairs'
2022-06-28 02:54:50 +02:00
Plug 'tpope/vim-surround'
" NERDtree + Plugins
Plug 'scrooloose/nerdtree'
Plug 'jistr/vim-nerdtree-tabs'
Plug 'Xuyuanp/nerdtree-git-plugin'
Plug 'ryanoasis/vim-devicons'
" Compilers
Plug 'xuhdev/singlecompile'
" Autocomplete
Plug 'neoclide/coc.nvim', {'branch': 'release'}
2021-04-05 13:46:01 +02:00
Plug 'honza/vim-snippets'
2019-11-17 20:12:26 +01:00
" Language Specific stuff (Language Plugins, Linters, etc)
2019-11-17 20:12:26 +01:00
" Asynchronous lint engine
2022-06-05 14:29:35 +02:00
Plug 'dense-analysis/ale'
2022-06-28 02:54:50 +02:00
Plug 'tpope/vim-endwise'
2022-06-05 14:29:35 +02:00
2019-11-17 20:12:26 +01:00
" Python
Plug 'hdima/python-syntax'
Plug 'fs111/pydoc.vim'
Plug 'Vimjas/vim-python-pep8-indent'
2022-06-28 02:54:50 +02:00
Plug 'tmhedberg/SimpylFold'
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'
2022-06-05 14:29:35 +02:00
" DevOps
2021-04-05 13:46:01 +02:00
Plug 'cespare/vim-toml'
2022-06-05 14:29:35 +02:00
Plug 'mrk21/yaml-vim'
2022-06-01 19:15:50 +02:00
Plug 'hashivim/vim-terraform'
2022-06-28 02:54:50 +02:00
Plug 'pedrohdz/vim-yaml-folds'
2022-06-01 19:15:50 +02:00
2022-06-05 14:29:35 +02:00
" KIT-Color-Scheme
2022-06-28 02:55:10 +02:00
Plug 'rad4day/kit.vim' " Original by taDachs <3 if you read this I may owe you a kœri
2021-04-05 13:46:01 +02:00
2022-06-20 15:59:51 +02:00
Plug 'altercation/vim-colors-solarized'
" Git integration
2022-06-28 02:54:50 +02:00
Plug 'braxtons12/blame_line.nvim'
Plug 'airblade/vim-gitgutter'
Plug 'tpope/vim-fugitive'
2022-06-05 14:29:35 +02:00
" Plug 'godlygeek/tabular'
2021-02-12 17:26:28 +01:00
Plug 'plasticboy/vim-markdown'
2021-04-05 03:41:52 +02:00
Plug 'majutsushi/tagbar'
Plug 'rad4day/vim-ripgrep'
2021-04-05 03:41:52 +02:00
2021-11-18 14:44:00 +01:00
Plug 'github/copilot.vim'
2022-06-28 02:42:37 +02:00
" Fancy buffer handling
2022-06-20 15:59:51 +02:00
Plug 'akinsho/bufferline.nvim', { 'tag': 'v2.2.1' }
2022-06-28 02:42:37 +02:00
Plug 'johann2357/nvim-smartbufs'
2022-06-20 15:59:51 +02:00
2022-06-23 12:13:00 +02:00
call plug#end()
2022-06-28 02:54:50 +02:00