vim: allow local override of config via the .vimrc.local file

fix-ci
bretello 2023-09-15 00:17:56 +02:00
parent e749eedb75
commit d4bf2f32f8
Signed by: brethil
GPG Key ID: 876AAC6290170FE7
1 changed files with 4 additions and 0 deletions

View File

@ -135,3 +135,7 @@ cnoremap <C-N> <Down>
source $DOTFILES/vim/plugins_config.vim
source $DOTFILES/vim/shortcuts.vim
source $DOTFILES/vim/functions.vim
if filereadable('.vimrc.local')
source .vimrc.local
endif