diff options
| author | Christian Cleberg <[email protected]> | 2026-03-27 21:24:12 -0500 |
|---|---|---|
| committer | Christian Cleberg <[email protected]> | 2026-03-27 21:24:23 -0500 |
| commit | f1ef816d122faaa9df9fdf5e846bf31801d63a16 (patch) | |
| tree | 694ecd97aa5fd0390d3934f3dd0a9d3a4e781757 /common | |
| parent | aa9c273c1edd8acc12034936256422047a62a9d3 (diff) | |
| download | dotfiles-f1ef816d122faaa9df9fdf5e846bf31801d63a16.tar.gz dotfiles-f1ef816d122faaa9df9fdf5e846bf31801d63a16.tar.bz2 dotfiles-f1ef816d122faaa9df9fdf5e846bf31801d63a16.zip | |
ssh and git updates
Diffstat (limited to 'common')
| -rw-r--r-- | common/git/.gitconfig | 5 | ||||
| -rw-r--r-- | common/ispell/.ispell_english | 3 | ||||
| -rw-r--r-- | common/ssh/.ssh/config | 5 | ||||
| -rw-r--r-- | common/zsh/.zshrc | 3 |
4 files changed, 15 insertions, 1 deletions
diff --git a/common/git/.gitconfig b/common/git/.gitconfig index 1294368..df1bbc1 100644 --- a/common/git/.gitconfig +++ b/common/git/.gitconfig @@ -53,3 +53,8 @@ [help] # Correct typos automatically (0.5 second delay) autocorrect = 5 +[sendemail] + smtpserver = smtp.soverin.net + smtpuser = [email protected] + smtpencryption = ssl + smtpserverport = 465 diff --git a/common/ispell/.ispell_english b/common/ispell/.ispell_english index 2c6a60f..6e54d32 100644 --- a/common/ispell/.ispell_english +++ b/common/ispell/.ispell_english @@ -40398,6 +40398,8 @@ soupy/RT sour/DGMPRSTY source/ADGMS Sourceforge/M +Sourcehut +Sourcehut's sourdough/M sourdoughs sourish @@ -48119,6 +48121,7 @@ xci xcii xciv xcix +Xcode xcvi xcvii Xe/MS diff --git a/common/ssh/.ssh/config b/common/ssh/.ssh/config index 5a66743..d54acd0 100644 --- a/common/ssh/.ssh/config +++ b/common/ssh/.ssh/config @@ -5,12 +5,15 @@ Host homelab Host homelab-remote User cmc HostName 70.187.29.187 - Port 2169 + Port 58219 Host dell User cmc HostName 192.168.0.251 Port 22 Host * + AddKeysToAgent yes + UseKeychain yes + IdentityFile ~/.ssh/id_ed25519 #ControlMaster auto #ControlPath ~/.ssh/master-%r@%h:%p #ControlPersist 300 diff --git a/common/zsh/.zshrc b/common/zsh/.zshrc index cf2898b..9cba6bf 100644 --- a/common/zsh/.zshrc +++ b/common/zsh/.zshrc @@ -37,6 +37,8 @@ fi # ============================================================================== export PATH="$HOME/.local/xonsh-env/xbin:$PATH" +export GOPATH=$HOME/go +export PATH=$PATH:$GOPATH/bin export PATH="$BREW_PREFIX/bin:$PATH" export GPG_TTY=$(tty) @@ -94,6 +96,7 @@ alias grep="rg" alias find="fd" alias emacs="emacs -nw" alias xclean="fd -H '.DS_Store' -t f -x rm" +alias python="python3" # Git alias g='git' |
