2018-03-23 12:47:18 +00:00
|
|
|
call plug#begin("~/.config/nvim/plugged")
|
2017-10-19 15:42:06 +00:00
|
|
|
|
|
|
|
" look for .editorconfig and merge into vim settings
|
|
|
|
Plug 'editorconfig/editorconfig-vim'
|
|
|
|
" file and dir browser
|
|
|
|
Plug 'scrooloose/nerdtree'
|
|
|
|
" syntax checking on steroids
|
|
|
|
Plug 'scrooloose/syntastic'
|
2018-02-21 23:37:53 +00:00
|
|
|
" integrate ripgrep, especially to be able to open matches, hugely useful for
|
2017-10-19 15:42:06 +00:00
|
|
|
" code aware search
|
2018-02-21 23:37:53 +00:00
|
|
|
Plug 'jremmen/vim-ripgrep'
|
2017-10-19 15:42:06 +00:00
|
|
|
" lightweight but sophisticated status line
|
|
|
|
Plug 'vim-airline/vim-airline'
|
|
|
|
Plug 'vim-airline/vim-airline-themes'
|
|
|
|
" git integration
|
|
|
|
Plug 'tpope/vim-fugitive'
|
2017-10-19 15:44:18 +00:00
|
|
|
Plug 'tpope/vim-rhubarb'
|
2017-10-19 15:42:06 +00:00
|
|
|
Plug 'airblade/vim-gitgutter'
|
|
|
|
" visualize vim's undo tree
|
|
|
|
Plug 'sjl/gundo.vim'
|
|
|
|
" better support for JS
|
|
|
|
Plug 'pangloss/vim-javascript'
|
|
|
|
" find, complete, etc. on steroids
|
|
|
|
" fast fuzzy finder
|
2017-10-19 15:44:18 +00:00
|
|
|
Plug 'junegunn/fzf', { 'dir': '~/.fzf', 'do': './install --all' }
|
2017-10-19 15:42:06 +00:00
|
|
|
Plug 'junegunn/fzf.vim'
|
|
|
|
" auto detect tab and space handling rather than setting per project
|
|
|
|
Plug 'tpope/vim-sleuth'
|
|
|
|
" support for the Rust programming language
|
|
|
|
Plug 'rust-lang/rust.vim'
|
|
|
|
" support for Rust's build tool/dependency manager
|
|
|
|
Plug 'timonv/vim-cargo'
|
|
|
|
" support for quickly changing font size
|
|
|
|
Plug 'drmikehenry/vim-fontsize'
|
|
|
|
" support for jsonnet
|
|
|
|
Plug 'google/vim-jsonnet'
|
|
|
|
" support for racer
|
|
|
|
Plug 'racer-rust/vim-racer'
|
2018-03-23 12:47:18 +00:00
|
|
|
" completion using racer
|
|
|
|
Plug 'roxma/nvim-cm-racer'
|
2017-11-09 17:04:33 +00:00
|
|
|
" groovy syntax and indent
|
|
|
|
Plug 'vim-scripts/groovy.vim'
|
2018-01-02 17:41:19 +00:00
|
|
|
Plug 'vim-scripts/groovyindent-unix'
|
2018-01-04 17:58:23 +00:00
|
|
|
" LSP
|
|
|
|
Plug 'autozimu/LanguageClient-neovim', {'tag': 'binary-*-x86_64-unknown-linux-musl'}
|
2018-01-16 19:21:05 +00:00
|
|
|
" auto format all the things
|
|
|
|
" https://github.com/Chiel92/vim-autoformat
|
|
|
|
Plug 'Chiel92/vim-autoformat'
|
2018-03-23 12:47:18 +00:00
|
|
|
" auto-completion framework
|
|
|
|
Plug 'roxma/nvim-completion-manager'
|
2018-04-04 15:37:21 +00:00
|
|
|
" breeze dark color scheme, to match KDE
|
|
|
|
" Plug cannot actually install this colorscheme, clone and link autoload and
|
|
|
|
" colors manually
|
|
|
|
"Plug 'fneu/breezy'
|
2017-10-19 15:42:06 +00:00
|
|
|
|
|
|
|
" All of your Plugins must be added before the following line
|
|
|
|
call plug#end() " required
|