This commit is contained in:
zhaohongliang 2022-07-08 13:57:51 +08:00 committed by GitHub
commit 43d2e16998
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

11
.vimrc
View File

@ -160,6 +160,7 @@ Plug 'Shougo/echodoc.vim'
Plug 'terryma/vim-smooth-scroll' Plug 'terryma/vim-smooth-scroll'
Plug 'rhysd/clever-f.vim' Plug 'rhysd/clever-f.vim'
Plug 'vim-scripts/indentpython.vim' Plug 'vim-scripts/indentpython.vim'
Plug 'airblade/vim-gitgutter'
" 加载自定义插件 " 加载自定义插件
if filereadable(expand($HOME . '/.vimrc.custom.plugins')) if filereadable(expand($HOME . '/.vimrc.custom.plugins'))
@ -217,10 +218,12 @@ let g:airline#extensions#tabline#enabled = 1
if !exists('g:airline_symbols') if !exists('g:airline_symbols')
let g:airline_symbols = {} let g:airline_symbols = {}
endif endif
let g:airline_left_sep = '' let g:airline_left_sep = ''
let g:airline_left_alt_sep = '' let g:airline_left_alt_sep = ''
let g:airline_right_sep = '' let g:airline_right_sep = ''
let g:airline_right_alt_sep = '' let g:airline_right_alt_sep = ''
let g:airline_symbols.branch = '  '
let g:airline_symbols.dirty=' ⚡'
" cpp-mode " cpp-mode
nnoremap <leader>y :CopyCode<cr> nnoremap <leader>y :CopyCode<cr>