diff options
| -rw-r--r-- | gitconfig | 7 | ||||
| -rwxr-xr-x | vimrc | 4 |
2 files changed, 11 insertions, 0 deletions
@@ -2,6 +2,11 @@ name = Ruben Beltran del Rio email = ruben@unlimited.pizza signingkey = B7C3495D98F27947 +[sendemail] + smtpserver = smtp.fastmail.com + smtpuser = ruben@unlimited.pizza + smtpencryption = ssl + smtpserverport = 465 [core] editor = nvim [color] @@ -12,3 +17,5 @@ rebase = false [commit] gpgsign = true +[init] + defaultBranch = main @@ -244,3 +244,7 @@ Plug 'jremmen/vim-ripgrep' " List ends here. Plugins become visible to Vim after this call. call plug#end() + +if filereadable(expand('~/.vimrc.local')) + exe 'source' '~/.vimrc.local' +endif |