27 lines
338 B
VimL
27 lines
338 B
VimL
set nu
|
|
|
|
call plug#begin()
|
|
" Declare the list of plugins.
|
|
"
|
|
|
|
Plug 'tpope/vim-sensible'
|
|
|
|
" Plug 'Valloric/YouCompleteMe'
|
|
|
|
Plug 'scrooloose/nerdtree'
|
|
|
|
Plug 'vim-airline/vim-airline'
|
|
|
|
Plug 'vim-airline/vim-airline-themes' " Status line"
|
|
|
|
Plug 'majutsushi/tagbar' " Tag bar"
|
|
|
|
Plug 'jiangmiao/auto-pairs'
|
|
|
|
|
|
|
|
|
|
|
|
" list ends here.
|
|
call plug#end()
|