vimrc/plug.vim

64 lines
1.8 KiB
VimL
Raw Normal View History

2018-03-23 08:47:18 -04:00
call plug#begin("~/.config/nvim/plugged")
" look for .editorconfig and merge into vim settings
Plug 'editorconfig/editorconfig-vim'
" file and dir browser
2020-06-23 12:26:53 -04:00
Plug 'preservim/nerdtree'
2020-05-11 11:35:52 -04:00
" git support for nerdtree
Plug 'Xuyuanp/nerdtree-git-plugin'
" syntax checking on steroids
Plug 'scrooloose/syntastic'
2018-02-21 18:37:53 -05:00
" integrate ripgrep, especially to be able to open matches, hugely useful for
" code aware search
2018-02-21 18:37:53 -05:00
Plug 'jremmen/vim-ripgrep'
" 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 11:44:18 -04:00
Plug 'tpope/vim-rhubarb'
2020-09-21 10:54:45 -04:00
Plug 'mhinz/vim-signify'
" 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 11:44:18 -04:00
Plug 'junegunn/fzf', { 'dir': '~/.fzf', 'do': './install --all' }
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 jsonnet
Plug 'google/vim-jsonnet'
" support for racer
Plug 'racer-rust/vim-racer'
2018-03-23 08:47:18 -04:00
" completion using racer
2019-05-16 11:01:44 -04:00
Plug 'ncm2/ncm2-racer'
2017-11-09 12:04:33 -05:00
" groovy syntax and indent
Plug 'vim-scripts/groovy.vim'
2018-01-02 12:41:19 -05:00
Plug 'vim-scripts/groovyindent-unix'
2018-01-04 12:58:23 -05:00
" LSP
2019-05-16 11:47:38 -04:00
Plug 'prabirshrestha/async.vim'
Plug 'prabirshrestha/vim-lsp'
Plug 'roxma/nvim-yarp'
" auto format all the things
" https://github.com/Chiel92/vim-autoformat
Plug 'Chiel92/vim-autoformat'
2018-03-23 08:47:18 -04:00
" auto-completion framework
2019-05-15 12:23:55 -04:00
Plug 'ncm2/ncm2'
2019-08-01 14:38:16 -04:00
" taskwarrior
2020-01-10 13:53:40 -05:00
Plug 'xarthurx/taskwarrior.vim'
2019-09-19 16:54:12 -04:00
" support for lsp in gnvim
Plug 'vhakulinen/gnvim-lsp'
2020-01-28 17:36:10 -05:00
" Wiki support
Plug 'vimwiki/vimwiki'
2021-06-16 10:45:54 -04:00
" Preferred color scheme
Plug 'fneu/breezy'
" All of your Plugins must be added before the following line
call plug#end() " required