Skip to content

Instantly share code, notes, and snippets.

@danielpsf
Created May 27, 2022 09:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save danielpsf/412c78ee8f0bacc2b7dd03364ac7ee21 to your computer and use it in GitHub Desktop.
Save danielpsf/412c78ee8f0bacc2b7dd03364ac7ee21 to your computer and use it in GitHub Desktop.
Always put in the end of ~/..zshrc
# 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