-
Notifications
You must be signed in to change notification settings - Fork 1
/
plugins.vim
61 lines (39 loc) · 1.29 KB
/
plugins.vim
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
54
55
56
57
58
59
60
61
echom "updating plugins"
packadd minpac
command! -n=1 Add :call minpac#add(<q-args>)
command! -n=1 Opt :call minpac#add(<q-args>, {'type': 'opt'})
call minpac#init()
Opt k-takata/minpac
Opt rwstauner/vim-write-plus
" Add several commands that utilize FZF to display/choose/autocomplete.
Opt junegunn/fzf
Opt junegunn/fzf.vim
" enable repeating certain plugin actions with . (autoloaded)
Add tpope/vim-repeat
" navigate various things back and forth with [x and ]x (t,l,q...)
Opt tpope/vim-unimpaired
" better management of quotes and paired symbols than i used to do
Add tpope/vim-surround
Opt junegunn/vim-easy-align
" toggle comment state with gc<motion>
Opt tpope/vim-commentary
" Read .projections.json for file type metadata.
Opt tpope/vim-projectionist
" Open "file:line" as file at line.
Opt wsdjeg/vim-fetch
" Enable consistent vim/tmux split navigation keys.
Opt christoomey/vim-tmux-navigator
" Use .editorconfig files. Not necessary for neovim.
Opt editorconfig/editorconfig-vim
" More advanced status line.
Opt millermedeiros/vim-statline
" Common configurations for various LSP's,
Opt neovim/nvim-lspconfig
" perl
"Add vim-perl/vim-perl
Add rwstauner/vim-cpanchanges
Add vim-scripts/perlprove.vim
Add hashivim/vim-terraform
call minpac#clean()
call minpac#update()
call minpac#status()