zshrc

➜ ~ 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"
9
10 # Uncomment the following line to use case-sensitive completion.
11 # CASE_SENSITIVE="true"
12
13 # Plugins (zsh-syntax-highlighting MUST be last)
14 plugins=(git zsh-syntax-highlighting zsh-autosuggestions)
15
16 # Source Oh My Zsh (must be last)
17 source $ZSH/oh-my-zsh.sh
18
19 export PATH="$PATH:$(npm bin -g)"
20 export PATH="/opt/homebrew/bin:$PATH"
21
22 # bun completions
23 [ -s "/Users/eliana/.bun/_bun" ] && source "/Users/eliana/.bun/_bun"
24
25 # bun
26 export BUN_INSTALL="$HOME/.bun"
27 export PATH="$BUN_INSTALL/bin:$PATH"
28
29 export NVM_DIR="$HOME/.nvm"
30 [ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm
31 [ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion
32
33 merge() {
34 cat *.html *.md > combined.html 2>/dev/null || echo "No HTML/MD files found."
35 }
36

➜ ~