summaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
Diffstat (limited to 'common')
-rw-r--r--common/git/.gitconfig5
-rw-r--r--common/ispell/.ispell_english3
-rw-r--r--common/ssh/.ssh/config5
-rw-r--r--common/zsh/.zshrc3
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'