Created
February 8, 2024 01:17
-
-
Save justinttl/5218f5d67278ac05c0079cb365a67daf to your computer and use it in GitHub Desktop.
Basic zsh configs for homebrew, nvm, pyenv, poetry, rust
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
# Homebrew | |
export PATH="/usr/local/bin:${PATH}" | |
# NVM | |
export NVM_DIR="$HOME/.nvm" | |
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" | |
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" | |
# Pyenv | |
export PATH="$HOME/.pyenv/bin:$PATH" | |
eval "$(pyenv init -)" | |
eval "$(pyenv init --path)" | |
eval "$(pyenv virtualenv-init -)" | |
# Poetry | |
export PATH="$HOME/.local/bin:$PATH" | |
# Rust | |
. "$HOME/.cargo/env" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment