添加文件

This commit is contained in:
2026-04-21 18:18:45 +08:00
parent b9b1d511b2
commit a4609d60bf

18
.vimrc Normal file
View File

@@ -0,0 +1,18 @@
" 语法高亮
syntax on
" 显示行数
set number
" tab 4格子
set tabstop=4
" 快捷键设置
map <C-N> :NERDTree<CR>
map <C-C> :NERDTreeClose<CR>
map <C-D> :NERDTreeFind<CR>
" vim-pulg
call plug#begin()
Plug 'tpope/vim-sensible'
Plug 'preservim/nerdtree'
call plug#end()