blob: 2312e9a2cdc4ef9f77575b74d5b2a5b40f4a893f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
" plugins
call plug#begin()
Plug 'joshdick/onedark.vim' " theme
Plug 'ctrlpvim/ctrlp.vim' " Ctrl-P similar to vsc
Plug 'tpope/vim-eunuch' " basic unix command in vim
Plug 'tomtom/tcomment_vim' " mininal commenter
Plug 'itchyny/lightline.vim' " minimal status bar
Plug 'unblevable/quick-scope' " highlight first char to jump to word
" bloat??
Plug 'romainl/vim-cool' " disable highlight after search
Plug 'justinmk/vim-syntax-extra' " better syntax highlight
Plug 'sheerun/vim-polyglot' " better syntax highlight
call plug#end()
|