add . to keep naming convention

This commit is contained in:
James Dixon 2024-02-02 22:55:08 -05:00
parent 2b61929c0e
commit efcf495fdf
2 changed files with 6 additions and 2 deletions

View File

@ -76,3 +76,7 @@ augroup languages
autocmd FileType html,javascript,css,json,yaml,sh autocmd FileType html,javascript,css,json,yaml,sh
\ setlocal ts=2 sts=2 sw=2 expandtab \ setlocal ts=2 sts=2 sw=2 expandtab
augroup END augroup END
if filereadable(expand("~/.local/.vimrc"))
source ~/.local/.vimrc
endif

View File

@ -554,8 +554,8 @@ endif
"============== "==============
"{{{ "{{{
"source local vimrc "source local vimrc
if filereadable(expand("~/.local/vimrc")) if filereadable(expand("~/.local/.vimrc"))
source ~/.local/vimrc source ~/.local/.vimrc
endif endif
"}}} "}}}