-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvimrc.plugins
More file actions
43 lines (35 loc) · 1.1 KB
/
vimrc.plugins
File metadata and controls
43 lines (35 loc) · 1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
" filetype off
" set nocompatible
call plug#begin()
Plug 'VundleVim/Vundle.vim'
Plug 'tpope/vim-fugitive'
Plug 'vim-airline/vim-airline' " Neato status bar
Plug 'vim-airline/vim-airline-themes'
Plug 'roryokane/detectindent' " Awesome indentation
Plug 'ntpeters/vim-better-whitespace' " Auto whitespace fixing
Plug 'airblade/vim-gitgutter' " git per-line status in the gutter
Plug 'junegunn/fzf' " Fuzzy finder file search, way faster than Ctrl-p
Plug 'junegunn/fzf.vim'
Plug 'jiangmiao/auto-pairs' " bracket pairing
" LSP support
Plug 'dense-analysis/ale'
" Languages
Plug 'sheerun/vim-polyglot'
" Maybe replaced by polyglot?
" Plug 'klen/python-mode'
" Plug 'psf/black', { 'branch': 'stable' }
"
" Languages replaced by polyglot
" Plug 'rust-lang/rust.vim'
" Plug 'pangloss/vim-javascript'
" Plug 'elixir-lang/vim-elixir'
" Plug 'jvirtanen/vim-hcl'
" Plug 'ledger/vim-ledger'
" Plug 'mxw/vim-jsx'
" Themes
Plug 'altercation/vim-colors-solarized'
Plug 'morhetz/gruvbox'
Plug 'romainl/Apprentice'
" Tools
Plug 'vimwiki/vimwiki'
call plug#end()