Created
November 26, 2025 19:42
-
-
Save claabs/23788e7e56b741248edc514ba9bc959b to your computer and use it in GitHub Desktop.
Linux shell config .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
| export ZSH="$HOME/.oh-my-zsh" | |
| ZSH_THEME="philips" | |
| zstyle ':omz:update' mode reminder # just remind me to update when it's time | |
| zstyle ':omz:plugins:nvm' autoload true | |
| plugins=(git node nvm npm docker uv) | |
| source $ZSH/oh-my-zsh.sh | |
| # User configuration | |
| ln -sf "$HOME/.nvm/versions/node/$(nvm version default)" "$HOME/.nvm/versions/node/default" | |
| # run this manually once to fix VS Code PATH | |
| # sudo ln -sf "$HOME/.nvm/versions/node/default/bin/node" "/usr/local/bin/node" | |
| alias rc="exec zsh" | |
| alias reset-hard='git reset --hard @{u}' | |
| alias guid='uuidgen' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment