myconfig.vim/.vimrc

27 lines
338 B
VimL
Raw Normal View History

2024-06-01 22:04:04 +08:00
set nu
2024-06-01 22:39:15 +08:00
call plug#begin()
2024-06-01 22:42:16 +08:00
" Declare the list of plugins.
"
2024-06-02 09:35:59 +08:00
2024-06-01 22:42:16 +08:00
Plug 'tpope/vim-sensible'
2024-06-02 09:35:59 +08:00
2024-06-02 11:21:56 +08:00
" Plug 'Valloric/YouCompleteMe'
2024-06-02 09:35:59 +08:00
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'
2024-06-01 22:42:16 +08:00
" list ends here.
2024-06-01 22:39:15 +08:00
call plug#end()