Created
May 27, 2022 09:52
-
-
Save danielpsf/412c78ee8f0bacc2b7dd03364ac7ee21 to your computer and use it in GitHub Desktop.
Always put in the end of ~/..zshrc
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# tfenv | |
export PATH="$HOME/.tfenv/bin:$PATH" | |
# PyEnv | |
export PATH="$HOME/.pyenv/bin:$PATH" | |
eval "$(pyenv init -)" | |
# Sdkman | |
source ~/.bash_profile; | |
# Krew | |
export PATH="${PATH}:${HOME}/.krew/bin" | |
# NVM | |
export NVM_DIR="$([ -z "${XDG_CONFIG_HOME-}" ] && printf %s "${HOME}/.nvm" || printf %s "${XDG_CONFIG_HOME}/nvm")" | |
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm | |
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion | |
# print normally | |
unset LESS; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment