diff options
author | brahmajit das <brahmajit.xyz@gmail.com> | 2022-06-18 10:53:52 +0530 |
---|---|---|
committer | brahmajit das <brahmajit.xyz@gmail.com> | 2022-06-18 10:53:52 +0530 |
commit | 0a441c0017522f864129c2b41096aa4a75098d47 (patch) | |
tree | 09f29d4d5b3ff0cbb1a85bc911b27fdb179d65a4 /.config/git | |
parent | 740d69dd7e4349b4c940ed6592f6297c23a3d276 (diff) |
config: git: signing key and email changed
Signed-off-by: brahmajit das <brahmajit.xyz@gmail.com>
Diffstat (limited to '.config/git')
-rw-r--r-- | .config/git/config | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/.config/git/config b/.config/git/config index eaa4afe..8a4f2bb 100644 --- a/.config/git/config +++ b/.config/git/config @@ -1,5 +1,5 @@ [core] - pager = nvim -R - + pager = nvim -u NONE -R - [color] ui = false [commit] @@ -12,14 +12,17 @@ cmd = nvim -d $LOCAL $REMOTE [difftool] prompt = false -;[pager] - ;diff = [diff] tool = vimdiff - ;external = $HOME/.local/bin/vim_wrapper.sh [user] - email = listout@protonmail.com - name = listout + email = brahmajit.xyz@gmail.com + name = brahmajit das + signingkey = brahmajit.xyz@gmail.com +[sendemail] + smtpserver = smtp.googlemail.com + smtpencryption = tls + smtpserverport = 587 + smtpuser = brahmajit.xyz@gmail.com [alias] # list files which have changed since REVIEW_BASE # (REVIEW_BASE defaults to 'master' in my zshrc) |