aboutsummaryrefslogtreecommitdiff
path: root/.pluggins.vim
blob: 1c60958c87173c16a25abde5300d1ad62f37db9c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
" 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 'haya14busa/incsearch.vim'   " better incsearch
    Plug 'justinmk/vim-syntax-extra'  " better syntax highlight
    Plug 'sheerun/vim-polyglot'       " better syntax highlight
call plug#end()