diff options
| author | Christian Cleberg <[email protected]> | 2026-08-02 16:41:10 -0500 |
|---|---|---|
| committer | Christian Cleberg <[email protected]> | 2026-08-02 16:43:14 -0500 |
| commit | 7bb68cb02426b99efefafd1e57398602f1074096 (patch) | |
| tree | 769e15be0177d889e073cb608dc8275996542bdf | |
| parent | cbe8254a774241f2abb8b4d65e290f2869c6e512 (diff) | |
| download | dotfiles-7bb68cb02426b99efefafd1e57398602f1074096.tar.gz dotfiles-7bb68cb02426b99efefafd1e57398602f1074096.tar.bz2 dotfiles-7bb68cb02426b99efefafd1e57398602f1074096.zip | |
add node and rust
| -rw-r--r-- | common/zsh/.zprofile | 5 | ||||
| -rw-r--r-- | common/zsh/.zshrc | 3 |
2 files changed, 8 insertions, 0 deletions
diff --git a/common/zsh/.zprofile b/common/zsh/.zprofile index 991ce5c..d683690 100644 --- a/common/zsh/.zprofile +++ b/common/zsh/.zprofile @@ -16,3 +16,8 @@ fi if [[ -f "$BREW_PATH" ]]; then eval "$($BREW_PATH shellenv)" fi + +# nvm +export NVM_DIR="$HOME/.nvm" +[ -s "/opt/homebrew/opt/nvm/nvm.sh" ] && \. "/opt/homebrew/opt/nvm/nvm.sh" # This loads nvm +[ -s "/opt/homebrew/opt/nvm/etc/bash_completion.d/nvm" ] && \. "/opt/homebrew/opt/nvm/etc/bash_completion.d/nvm" # This loads nvm bash_completion diff --git a/common/zsh/.zshrc b/common/zsh/.zshrc index 4b2b11f..5cc423c 100644 --- a/common/zsh/.zshrc +++ b/common/zsh/.zshrc @@ -178,3 +178,6 @@ alias claude-mem='/Users/cmc/.bun/bin/bun "/Users/cmc/.claude/plugins/marketplac # openssl export PATH="${HOMEBREW_PREFIX}/opt/openssl/bin:$PATH" export PATH="$HOME/.local/bin:$PATH" + +# Rust / cargo binaries +export PATH="$HOME/.cargo/bin:$PATH" |
