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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
|
" get plug.vim if it's not installed
if empty(glob('~/.vim/autoload/plug.vim'))
silent !curl -fLo ~/.vim/autoload/plug.vim --create-dirs
\ https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
autocmd VimEnter * PlugInstall --sync | source $MYVIMRC
endif
call plug#begin('~/.vim/plugged')
" Core
Plug 'mhinz/vim-signify' " git status in the sign column
Plug 'tpope/vim-commentary' " auto-comment using `gcc`
Plug 'cohama/lexima.vim' " auto-close parens, brackets, etc.
Plug 'tpope/vim-surround' " edit surroundings in pairs
Plug 'itchyny/lightline.vim' " lightweight status bar
Plug 'neomake/neomake' " async job runner
Plug 'sbdchd/neoformat' " async code formatter
Plug 'justinmk/vim-dirvish' " folder browser
Plug 'justinmk/vim-sneak' " powerful missing vim motions
if has('nvim-0.5.0')
Plug 'neovim/nvim-lsp'
Plug 'haorenW1025/completion-nvim'
endif
Plug 'SirVer/ultisnips'
\| Plug 'honza/vim-snippets'
Plug 'vimwiki/vimwiki', { 'for': ['vimwiki'], 'on': 'VimwikiIndex' }
" search
" Plug 'junegunn/fzf',
" \ { 'dir': '~/.fzf', 'do': './install --all'}
" \ |Plug 'junegunn/fzf.vim'
" Plug 'lotabout/skim',
" \ { 'on': 'SK', 'dir': '~/.skim', 'do': './install'}
Plug 'liuchengxu/vim-clap', { 'do': ':Clap install-binary!' } " interactive finder / dispatcher
" Misc
Plug 'junegunn/vim-easy-align',
\ { 'on': ['EasyAlign', '<Plug>(EasyAlign)'] }
Plug 'tpope/vim-sleuth' " auto-set shiftwidth and expandtab options
Plug 'nathanaelkane/vim-indent-guides' " show indentation levels
Plug 'tpope/vim-repeat' " extend '.' to plugins
Plug 'liuchengxu/vista.vim' " sidebar populated by lsp, ctags, etc.
Plug 'sgur/vim-editorconfig' " implements editorconfig in vimscript
Plug 'rhysd/conflict-marker.vim'
Plug 'michaeljsmith/vim-indent-object' " adds indentation text-objects
Plug 'kshenoy/vim-signature' " toggle, display and navigate marks
Plug 'RRethy/vim-hexokinase',
\ { 'do': 'make hexokinase' } " highlights color codes
Plug 'rhysd/git-messenger.vim' " git-blame in a popup
Plug 'bling/vim-bufferline' " needed to put buffers into tabline
Plug 'kassio/neoterm'
" Languages
" NOTE: these should only be loaded when they are required...
" Plug 'rhysd/vim-grammarous', { 'for': ['markdown', 'latex', 'tex'] }
Plug 'lervag/vimtex', { 'for': ['latex', 'tex'] }
Plug 'plasticboy/vim-markdown', { 'for': ['markdown'] }
Plug 'masukomi/vim-markdown-folding', { 'for': ['markdown'] }
Plug 'mattn/emmet-vim', { 'for': ['html', 'vue'] } " super-fast HTML editing
" Plug 'valloric/matchtagalways', { 'for': ['html', 'vue', 'xml'] } " visually match HTML tags enclosing cursor location
Plug 'ledger/vim-ledger', { 'for': ['ledger'] }
\| Plug 'tpope/vim-speeddating' " easy time/date incrementing
\| Plug 'vim-scripts/utl.vim' " follow links/urls
Plug 'gentoo/gentoo-syntax', { 'for': ['ebuild'] }
" multi-language support with lazy loading
" NOTE: put language specific plugs before this to avoid conflicsts
Plug 'sheerun/vim-polyglot'
" Minimal UX
Plug 'junegunn/goyo.vim', { 'on': 'Goyo' } " hide ui clutter
Plug 'junegunn/limelight.vim', { 'on': 'Limelight' } " dims colors
" Plug 'equalsraf/neovim-gui-shim'
" Colorschemes
Plug 'NLKNguyen/papercolor-theme'
Plug 'cideM/yui'
" Local
" Plug '~/devel/projects/nihon-theme/vim'
" Plug '~/devel/projects/vim-orgdown'
call plug#end()
|