Compare commits

...

2 commits

Author SHA1 Message Date
049eb9ee83
pyenv if 2024-04-06 17:20:35 +02:00
0ca559ef2d
remove gitconfig from repo 2024-04-06 17:19:22 +02:00
2 changed files with 7 additions and 24 deletions

View file

@ -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

12
.zshrc
View file

@ -206,8 +206,10 @@ else
fi fi
### --- pyenv Config ------------------------------------- ### --- pyenv Config -------------------------------------
export PYENV_ROOT="$HOME/.pyenv" if [ -d $HOME/.pyenv ]; then
[[ -d $PYENV_ROOT/bin ]] && export PATH="$PYENV_ROOT/bin:$PATH" export PYENV_ROOT="$HOME/.pyenv"
eval "$(pyenv init -)" [[ -d $PYENV_ROOT/bin ]] && export PATH="$PYENV_ROOT/bin:$PATH"
eval "$(pyenv virtualenv-init - zsh)" eval "$(pyenv init -)"
pyenv activate std 2> /dev/null > /dev/null eval "$(pyenv virtualenv-init - zsh)"
pyenv activate std 2> /dev/null > /dev/null
fi