-
Notifications
You must be signed in to change notification settings - Fork 0
/
vimrc.bundles
53 lines (46 loc) · 1.21 KB
/
vimrc.bundles
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
44
45
46
47
48
49
50
51
52
53
call plug#begin('~/.vim/plugged')
"Used often
"templates
Plug 'mrtazz/vim-stencil'
"Git tags in left hand side
Plug 'airblade/vim-gitgutter'
"Always create directory path
Plug 'pbrisbin/vim-mkdir'
"Directory exploration
Plug 'scrooloose/nerdtree'
Plug 'Xuyuanp/nerdtree-git-plugin'
"Linting
Plug 'dense-analysis/ale'
"Other
Plug 'editorconfig/editorconfig-vim'
Plug '907th/vim-auto-save'
Plug 'mattboehm/vim-accordion'
"Meaning to use more
Plug 'mileszs/ack.vim'
Plug 'tpope/vim-commentary'
Plug 'tpope/vim-fugitive'
Plug '/usr/local/opt/fzf'
Plug 'junegunn/fzf.vim'
" Languages
Plug 'Vimjas/vim-python-pep8-indent', { 'for': 'python' }
Plug 'conorclifford/vim-apidoc'
Plug 'dag/vim-fish'
Plug 'derekwyatt/vim-scala', { 'for': 'scala' }
Plug 'ekalinin/Dockerfile.vim', { 'for': 'Dockerfile' }
Plug 'elzr/vim-json', { 'for': 'json' }
Plug 'fatih/vim-go', { 'for': 'go' }
"ctags support
Plug 'xolox/vim-misc'
Plug 'xolox/vim-easytags'
Plug 'majutsushi/tagbar'
" Experimental
"Register browsing
Plug 'dahu/vim-lotr'
"Tex language
Plug 'lervag/vimtex'
"General test framework
Plug 'janko-m/vim-test'
"Testing markdown previews
Plug 'kannokanno/previm', { 'for': 'markdown' }
Plug 'reedes/vim-wordy', { 'for': 'markdown' }
call plug#end()