7 lines
295 B
VimL
7 lines
295 B
VimL
" Source config upon saving vim file.
|
|
" Group to avoid "exponential" reloading. See:
|
|
" https://stackoverflow.com/questions/2400264/is-it-possible-to-apply-vim-configurations-without-restarting
|
|
augroup vimrc_reload
|
|
autocmd! BufWritePost * source $MYVIMRC | echom "Reloaded" | redraw
|
|
augroup END
|