新增coc.nvim的支持,并且添加了一些常用的插件,虽然只有两个的说

This commit is contained in:
2026-04-27 12:18:09 +00:00
parent 84e8f2e3d4
commit 500caa2601

9
.vimrc
View File

@@ -3,7 +3,8 @@ syntax on
" 显示行数
set number
" tab 4格子
set tabstop=4
set ts=4
set shiftwidth=4
" 快捷键设置
map <C-N> :NERDTree<CR>
@@ -11,6 +12,11 @@ map <C-C> :NERDTreeClose<CR>
map <C-D> :NERDTreeFind<CR>
map <C-T> :terminal<CR>
" coc.pulg
" coc-json
" coc-vimlsp
" vim-pulg
call plug#begin()
Plug 'tpope/vim-sensible'
@@ -20,4 +26,5 @@ Plug 'liuchengxu/vim-which-key'
Plug 'vim-airline/vim-airline'
Plug 'jiangmiao/auto-pairs'
Plug 'easymotion/vim-easymotion'
Plug 'neoclide/coc.nvim', {'branch': 'release'}
call plug#end()