aboutsummaryrefslogtreecommitdiff
path: root/.pluggins.vim
blob: 18cefbe0ab363a1bac26626f9ce310676c6893dd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
" plugins
call plug#begin()
    Plug 'dracula/vim', {'as': 'dracula' } " 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()