14 lines
252 B
VimL
14 lines
252 B
VimL
set rtp+=~/.vim/bundle/Vundle.vim
|
|
|
|
call vundle#begin()
|
|
|
|
Plugin 'scrooloose/nerdtree'
|
|
Plugin 'itchyny/lightline.vim'
|
|
Plugin 'airblade/vim-gitgutter'
|
|
Plugin 'tpope/vim-fugitive'
|
|
Plugin 'scrooloose/syntastic'
|
|
|
|
call vundle#end()
|
|
|
|
filetype plugin indent on
|