blob: 9289f7f788584b364ff300a5908a56b04ef163c0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
" plugins
call plug#begin()
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
" s19 at home
Plug 'pbondoer/vim-42header' " 42 header
" themes
Plug 'joshdick/onedark.vim' " onedark
Plug 'dracula/vim', {'as': 'vim'} " dracula
call plug#end()
|