Skip to content

Instantly share code, notes, and snippets.

@claabs
Created November 26, 2025 19:42
Show Gist options
  • Select an option

  • Save claabs/23788e7e56b741248edc514ba9bc959b to your computer and use it in GitHub Desktop.

Select an option

Save claabs/23788e7e56b741248edc514ba9bc959b to your computer and use it in GitHub Desktop.
Linux shell config .zshrc
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