From 0ca559ef2ddbd2ee36537f5bd40c1e0ec2a3c536 Mon Sep 17 00:00:00 2001 From: PlexSheep Date: Sat, 6 Apr 2024 17:19:22 +0200 Subject: [PATCH 1/2] remove gitconfig from repo --- .gitconfig | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 .gitconfig diff --git a/.gitconfig b/.gitconfig deleted file mode 100644 index 4c7bf02..0000000 --- a/.gitconfig +++ /dev/null @@ -1,19 +0,0 @@ -[user] - email = software@cscherr.de - name = PlexSheep - signingkey = software@cscherr.de -[credential] - helper = store --file ~/.git-credentials -[commit] - gpgsign = true -[pull] - rebase = false -[maintenance] - repo = /home/plex/Documents/code/rs/autocrate - repo = /home/plex/Documents/code/rs/ganar - repo = /home/plex/Documents/code/rs/hedu - repo = /home/plex/Documents/code/rs/netpong - repo = /home/plex/Documents/code/rs/pt - repo = /home/plex/Documents/code/rs/rs-base - repo = /home/plex/Documents/code/rs/rs-basic - repo = /home/plex/Documents/code/rs/wordle-analyzer From 049eb9ee839c53823c5dca40aaef6280dbee4735 Mon Sep 17 00:00:00 2001 From: PlexSheep Date: Sat, 6 Apr 2024 17:20:35 +0200 Subject: [PATCH 2/2] pyenv if --- .zshrc | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/.zshrc b/.zshrc index 7ceeb01..060de86 100644 --- a/.zshrc +++ b/.zshrc @@ -206,8 +206,10 @@ else fi ### --- pyenv Config ------------------------------------- -export PYENV_ROOT="$HOME/.pyenv" -[[ -d $PYENV_ROOT/bin ]] && export PATH="$PYENV_ROOT/bin:$PATH" -eval "$(pyenv init -)" -eval "$(pyenv virtualenv-init - zsh)" -pyenv activate std 2> /dev/null > /dev/null +if [ -d $HOME/.pyenv ]; then + export PYENV_ROOT="$HOME/.pyenv" + [[ -d $PYENV_ROOT/bin ]] && export PATH="$PYENV_ROOT/bin:$PATH" + eval "$(pyenv init -)" + eval "$(pyenv virtualenv-init - zsh)" + pyenv activate std 2> /dev/null > /dev/null +fi