1
0
mirror of https://github.com/aquatix/dotfiles.git synced 2025-12-06 22:55:10 +01:00

Better loading and settings of signify plugin

This commit is contained in:
2019-12-09 11:31:33 +01:00
parent 87fe26662e
commit ff4f6c7a86

9
.vimrc
View File

@@ -42,8 +42,15 @@ let g:airline_theme = "hybrid"
let g:airline#extensions#tagbar#enabled = 0 let g:airline#extensions#tagbar#enabled = 0
" Better showing of open buffers (open files) " Better showing of open buffers (open files)
Plugin 'bling/vim-bufferline' Plugin 'bling/vim-bufferline'
" Version control notes in the line number bar " Version control notes in the line number bar
Plugin 'mhinz/vim-signify' if has('nvim') || has('patch-8.0.902')
Plugin 'mhinz/vim-signify'
else
Plugin 'mhinz/vim-signify', { 'branch': 'legacy' }
endif
" default updatetime 4000ms is not good for async update
set updatetime=100
" Git wrapper " Git wrapper