git send-email config

This commit is contained in:
Michael Zhang 2020-11-18 19:54:10 -06:00
parent a885d09805
commit 853bbd88ee
Signed by: michael
GPG key ID: BDA47A31A3C8EE6B
2 changed files with 21 additions and 10 deletions

View file

@ -13,5 +13,13 @@
[commit] [commit]
gpgsign = true gpgsign = true
[sendemail]
smtpServer = mzhang.io
smtpServerPort = 465
smtpUser = mail@mzhang.io
smtpPass = {{ pass "email/mail@mzhang.io" }}
smtpEncryption = ssl
confirm = auto
# vim: set filetype=gitconfig: # vim: set filetype=gitconfig:

View file

@ -2,17 +2,20 @@ source $HOME/.local/scripts/zsh/zsh-prelude.zsh
source $HOME/.local/scripts/zsh/check-update.zsh source $HOME/.local/scripts/zsh/check-update.zsh
export LANG=en_US.UTF-8 export LANG=en_US.UTF-8
# oh-my-zsh
export ZSH="$HOME/.oh-my-zsh" export ZSH="$HOME/.oh-my-zsh"
ZSH_THEME="ys" ZSH_THEME="ys"
plugins=(
plugins=(git zsh-syntax-highlighting) git
zsh-syntax-highlighting
)
export DISABLE_AUTO_UPDATE="true"
source $ZSH/oh-my-zsh.sh
# options # options
setopt HIST_IGNORE_SPACE setopt HIST_IGNORE_SPACE
export DISABLE_AUTO_UPDATE="true"
source $ZSH/oh-my-zsh.sh
export DOTNET_CLI_TELEMETRY_OPTOUT=1 export DOTNET_CLI_TELEMETRY_OPTOUT=1
# export RUST_SRC_PATH="$(rustc --print sysroot)/lib/rustlib/src/rust/src" # export RUST_SRC_PATH="$(rustc --print sysroot)/lib/rustlib/src/rust/src"
export EDITOR=nvim export EDITOR=nvim