➜ ~ cat -n ~/.zshrc
1 # PATH configuration (your custom paths first) 2 export PATH=$HOME/bin:$HOME/.local/bin:/usr/local/bin:$PATH 3 export PATH="/opt/homebrew/bin:$PATH" 4 # Path to your Oh My Zsh installation. 5 export ZSH="$HOME/.oh-my-zsh" 6 7 # Set name of the theme to load 8 ZSH_THEME="robbyrussell" 910 # Uncomment the following line to use case-sensitive completion.11 # CASE_SENSITIVE="true"1213 # Plugins (zsh-syntax-highlighting MUST be last)14 plugins=(git zsh-syntax-highlighting zsh-autosuggestions)1516 # Source Oh My Zsh (must be last)17 source $ZSH/oh-my-zsh.sh1819 export PATH="$PATH:$(npm bin -g)"20 export PATH="/opt/homebrew/bin:$PATH"2122 # bun completions23 [ -s "/Users/eliana/.bun/_bun" ] && source "/Users/eliana/.bun/_bun"2425 # bun26 export BUN_INSTALL="$HOME/.bun"27 export PATH="$BUN_INSTALL/bin:$PATH"2829 export NVM_DIR="$HOME/.nvm"30 [ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm31 [ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion3233 merge() {34 cat *.html *.md > combined.html 2>/dev/null || echo "No HTML/MD files found."35 }36➜ ~