mirror of
https://github.com/akelge/zsh
synced 2025-07-14 17:52:09 +00:00
13 lines
257 B
Bash
13 lines
257 B
Bash
# pyenv
|
|
if type pyenv; then
|
|
export PYENV_ROOT="$HOME/.pyenv"
|
|
eval "$(pyenv init --path)"
|
|
eval "$(pyenv init -)"
|
|
fi
|
|
|
|
# thefuck
|
|
type thefuck && eval $(thefuck --alias)
|
|
|
|
#z
|
|
type ./plugins/zsh-z/zsh-z.plugin.zsh && source ./plugins/zsh-z/zsh-z.plugin.zsh
|