aboutsummaryrefslogtreecommitdiff
path: root/.pluggins.vim
blob: c3951a5ab395d874f19039d587252c1f917605a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
" 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

    " 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()