1
0
mirror of https://git.decapod.one/brethil/dotfiles synced 2024-11-21 19:11:30 +01:00

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

This commit is contained in:
bretello 2023-09-15 00:17:56 +02:00
parent e749eedb75
commit d4bf2f32f8
Signed by: brethil
GPG Key ID: 876AAC6290170FE7

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