1
This commit is contained in:
Evan Pratten 2023-11-01 22:27:06 -04:00
commit f3c433304c
2 changed files with 6 additions and 1 deletions

View File

@ -3,7 +3,7 @@
Host * !*.github.com !github.com
IdentityFile %d/.ssh/id_ed25519_sk_rk_yk20572395
IdentityFile %d/.ssh/id_ed25519
# IdentityFile %d/.ssh/id_rsa
IdentityFile %d/.ssh/id_rsa
VisualHostKey yes
# Github SSH adapter for restricted networks

View File

@ -28,6 +28,7 @@ mkdir -p ~/.ssh
# Configure the shell
ln -sf $EWCONFIG_ROOT/configs/shells/zsh/.zshrc ~/.zshrc
ln -sf $EWCONFIG_ROOT/configs/shells/bash/.bashrc ~/.bashrc
mkdir -p $LOCALAPPDATA/Packages/Microsoft.WindowsTerminal_8wekyb3d8bbwe/LocalState
ln -sf $EWCONFIG_ROOT/configs/windows-terminal/settings.json $LOCALAPPDATA/Packages/Microsoft.WindowsTerminal_8wekyb3d8bbwe/LocalState/settings.json
# Configure Git
@ -35,6 +36,10 @@ ln -sf $EWCONFIG_ROOT/configs/git/.gitconfig ~/.gitconfig
ln -sf $EWCONFIG_ROOT/configs/sssh/allowed_signers ~/.ssh/allowed_signers || true
ln -sf $EWCONFIG_ROOT/configs/git/.mailmap ~/.config/git/.mailmap
# Remove Microsoft's fake python executables
rm $LOCALAPPDATA/Microsoft/WindowsApps/python.exe || true
rm $LOCALAPPDATA/Microsoft/WindowsApps/python3.exe || true
# Copy the global mailmap file once
if [ ! -f ~/.config/git/config-fragments/global-mailmap.gitconfig ]; then
cp $EWCONFIG_ROOT/configs/git/config-fragments/global-mailmap.gitconfig ~/.config/git/config-fragments/global-mailmap.gitconfig