aboutsummaryrefslogtreecommitdiff
path: root/.vim
diff options
context:
space:
mode:
authortdro <tdro@users.noreply.github.com>2022-12-09 00:36:49 -0500
committertdro <tdro@users.noreply.github.com>2022-12-09 00:36:49 -0500
commitcaaab7d2ef07a76fd41fa89bc1015156c641cfe7 (patch)
tree46053ad3614de555f1004a6b066e7af014b1c9d4 /.vim
parentfa21979693b0c632434883c150f7d80a61d96bed (diff)
downloaddotfiles-caaab7d2ef07a76fd41fa89bc1015156c641cfe7.tar.gz
dotfiles-caaab7d2ef07a76fd41fa89bc1015156c641cfe7.tar.bz2
dotfiles-caaab7d2ef07a76fd41fa89bc1015156c641cfe7.zip
.vim/vimrc: Auto source vimrc and .vimrc
Diffstat (limited to '.vim')
-rw-r--r--.vim/vimrc4
1 files changed, 2 insertions, 2 deletions
diff --git a/.vim/vimrc b/.vim/vimrc
index 7b7aeff..3ed0d8b 100644
--- a/.vim/vimrc
+++ b/.vim/vimrc
@@ -283,8 +283,8 @@ augroup AutoCommands
autocmd!
" Source reloads.
- autocmd BufWritePost .vimrc source % | Notify('printf "Configuration sourced."')
- autocmd BufWritePost plugins.vim source % | Notify('printf "Plugins configuration sourced."')
+ autocmd BufWritePost .vimrc,vimrc source % | Notify('printf "Configuration sourced."')
+ autocmd BufWritePost plugins.vim source % | Notify('printf "Plugins configuration sourced."')
" Linting file type post write commands.
autocmd FileType css autocmd! BufWritePost <buffer> exe 'Notify(''prettier --write --parser css ' . expand('%') . ' 2>&1'')' | :e