105 lines
3.2 KiB
VimL
105 lines
3.2 KiB
VimL
call plug#begin("~/.config/nvim/plugged")
|
|
" I try to keep these to a minimum and to understand what each plugin does and
|
|
" adds to my existing set up. I try to capture the value, at least to me, each
|
|
" plugin adds. I've tried to logically group them, as well, to spot overlap
|
|
" and redundancy.
|
|
|
|
|
|
" informational
|
|
" lightweight but sophisticated status line
|
|
Plug 'vim-airline/vim-airline'
|
|
Plug 'vim-airline/vim-airline-themes'
|
|
" visualize vim's undo tree
|
|
Plug 'mbbill/undotree'
|
|
" Preferred color scheme
|
|
Plug 'fneu/breezy'
|
|
|
|
|
|
" files, folders, projects, etc.
|
|
" file and dir browser
|
|
Plug 'preservim/nerdtree'
|
|
" integrate ripgrep, especially to be able to open matches, hugely useful for
|
|
" code aware search
|
|
Plug 'jremmen/vim-ripgrep'
|
|
" Support for the cd replacement, zoxide
|
|
Plug 'nanotee/zoxide.vim'
|
|
" taskwarrior
|
|
Plug 'xarthurx/taskwarrior.vim'
|
|
" Wiki support - my life is in vimwiki
|
|
Plug 'vimwiki/vimwiki', { 'branch': 'dev' }
|
|
" integrating taskwarrior and vimwiki - why did it take me so long to adopt
|
|
" this?
|
|
Plug 'tools-life/taskwiki'
|
|
|
|
|
|
" git integration
|
|
Plug 'tpope/vim-fugitive'
|
|
Plug 'tpope/vim-rhubarb'
|
|
Plug 'mhinz/vim-signify'
|
|
" git support for nerdtree
|
|
Plug 'Xuyuanp/nerdtree-git-plugin'
|
|
" better support for JS
|
|
Plug 'pangloss/vim-javascript'
|
|
" find, complete, etc. on steroids
|
|
" fast fuzzy finder
|
|
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'
|
|
|
|
|
|
" tools - all languages
|
|
" look for .editorconfig and merge into vim settings
|
|
Plug 'editorconfig/editorconfig-vim'
|
|
" syntax checking on steroids
|
|
Plug 'scrooloose/syntastic'
|
|
" auto format all the things
|
|
" https://github.com/Chiel92/vim-autoformat
|
|
Plug 'Chiel92/vim-autoformat'
|
|
|
|
" Collection of common configurations for the Nvim LSP client
|
|
Plug 'neovim/nvim-lspconfig'
|
|
|
|
" Completion framework
|
|
" I found these when updating my lsp configuration and after using the
|
|
" additional sources for a while, find them super useful for general editing
|
|
" too
|
|
" See hrsh7th's other plugins for more completion sources!
|
|
Plug 'hrsh7th/nvim-cmp'
|
|
" LSP completion source for nvim-cmp
|
|
Plug 'hrsh7th/cmp-nvim-lsp'
|
|
" Snippet completion source for nvim-cmp
|
|
Plug 'hrsh7th/cmp-vsnip'
|
|
" Other useful completion sources
|
|
Plug 'hrsh7th/cmp-path'
|
|
Plug 'hrsh7th/cmp-buffer'
|
|
" Snippet engine
|
|
Plug 'hrsh7th/vim-vsnip'
|
|
|
|
" allows other programs and scripts to hook into NeoVim's language server
|
|
" protocol support; adopted as a pre-requisite for prettier integration
|
|
Plug 'jose-elias-alvarez/null-ls.nvim'
|
|
|
|
" specific languages, programming and otherwise
|
|
|
|
" support for the Rust programming language
|
|
Plug 'rust-lang/rust.vim'
|
|
" the rest of the rust config came from: https://sharksforarms.dev/posts/neovim-rust/
|
|
" To enable more of the features of rust-analyzer, such as inlay hints and more!
|
|
Plug 'simrat39/rust-tools.nvim'
|
|
|
|
" support for jsonnet
|
|
Plug 'google/vim-jsonnet'
|
|
|
|
" groovy syntax and indent
|
|
Plug 'vim-scripts/groovy.vim'
|
|
Plug 'vim-scripts/groovyindent-unix'
|
|
|
|
" nvm to make JS/TS/Node easier to work with
|
|
Plug 'marene/nvm.vim'
|
|
" automating format JS/TS sources
|
|
Plug 'MunifTanjim/prettier.nvim'
|
|
|
|
|
|
" All of your Plugins must be added before the following line
|
|
call plug#end() " required
|