| 1 | # ~/.zshrc — mirrors the nushell config |
| 2 | # |
| 3 | # Linked via: fling link -s zsh -l ~ |
| 4 | |
| 5 | # Interactive-only guard |
| 6 | case $- in |
| 7 | *i*) ;; |
| 8 | *) return ;; |
| 9 | esac |
| 10 | |
| 11 | # ============================================================================= |
| 12 | # History |
| 13 | # ============================================================================= |
| 14 | HISTFILE="$HOME/.zsh_history" |
| 15 | HISTSIZE=10000 |
| 16 | SAVEHIST=10000 |
| 17 | setopt EXTENDED_HISTORY |
| 18 | setopt HIST_IGNORE_ALL_DUPS # ~ HISTCONTROL=ignoredups |
| 19 | setopt HIST_IGNORE_SPACE # ~ HISTCONTROL=ignorespace |
| 20 | setopt HIST_REDUCE_BLANKS |
| 21 | setopt APPEND_HISTORY # ~ shopt -s histappend |
| 22 | setopt INC_APPEND_HISTORY |
| 23 | setopt share_history |
| 24 | setopt hist_verify |
| 25 | |
| 26 | |
| 27 | # vi mode (matches nushell edit_mode: vi) |
| 28 | set -o vi |
| 29 | |
| 30 | # Edit command in $EDITOR |
| 31 | autoload -Uz edit-command-line |
| 32 | zle -N edit-command-line |
| 33 | bindkey '^O' edit-command-line |
| 34 | |
| 35 | # ============================================================================= |
| 36 | # Environment |
| 37 | # ============================================================================= |
| 38 | export EDITOR="nvim" |
| 39 | export CLICOLOR=1 |
| 40 | |
| 41 | # Go |
| 42 | export GOROOT="/usr/local/go" |
| 43 | export GOPATH="$HOME/.local/share/go" |
| 44 | export GOMODCACHE="$HOME/.local/share/go-mod-cache" |
| 45 | export GOPRIVATE="*gitlab*" |
| 46 | |
| 47 | # bat |
| 48 | export BAT_THEME="ansi" |
| 49 | export BAT_THEME_DARK="ansi" |
| 50 | |
| 51 | # gpg |
| 52 | export GPG_TTY="$(tty)" |
| 53 | |
| 54 | # misc |
| 55 | export BULLETS_FEEDS="feeds.stevedylan.dev/feed.xml" |
| 56 | export FLOW_BOARD_PATH="/Users/stevedylandev/notes/board" |
| 57 | |
| 58 | # pnpm |
| 59 | export PNPM_HOME="$HOME/Library/pnpm" |
| 60 | |
| 61 | # fzf |
| 62 | export FZF_DEFAULT_COMMAND='fd --type f --hidden --exclude ".git"' |
| 63 | export FZF_DEFAULT_OPTS=' |
| 64 | --color=fg:8:bold,fg+:15,bg:-1,bg+:-1 |
| 65 | --color=hl:10:bold,hl+:10:bold |
| 66 | --color=info:8,spinner:9,header:4 |
| 67 | --color=prompt:2,pointer:9,marker:1 |
| 68 | --color=border:7,label:15:bold,query:15 |
| 69 | --border="rounded" |
| 70 | --border-label="" |
| 71 | --preview-window="border-rounded" |
| 72 | --prompt="> " |
| 73 | --marker=" " |
| 74 | --pointer="◆" |
| 75 | --separator="" |
| 76 | --scrollbar="" |
| 77 | --gutter=" " |
| 78 | --info=inline-right' |
| 79 | |
| 80 | # ============================================================================= |
| 81 | # PATH |
| 82 | # ============================================================================= |
| 83 | # path_add <dir>: prepend if not already present and dir exists |
| 84 | path_add() { |
| 85 | case ":$PATH:" in |
| 86 | *":$1:"*) ;; |
| 87 | *) [ -d "$1" ] && PATH="$1:$PATH" ;; |
| 88 | esac |
| 89 | } |
| 90 | |
| 91 | path_add "/opt/homebrew/bin" |
| 92 | path_add "/usr/local/go/bin" |
| 93 | path_add "$HOME/.cargo/bin" |
| 94 | path_add "$HOME/.local/share/go/bin" |
| 95 | path_add "$HOME/.local/bin" |
| 96 | path_add "/usr/local/bin" |
| 97 | path_add "$HOME/.bun/bin" |
| 98 | path_add "/Applications/Docker.app/Contents/Resources/bin" |
| 99 | path_add "$HOME/.tmux/plugins/t-smart-tmux-session-manager/bin" |
| 100 | path_add "$HOME/.deno/bin" |
| 101 | path_add "$HOME/.foundry/bin" |
| 102 | path_add "$HOME/.local/share" |
| 103 | path_add "$HOME/.local/share/solana/install/active_release/bin" |
| 104 | path_add "$HOME/.aztec/bin" |
| 105 | path_add "$HOME/.nargo/bin" |
| 106 | path_add "$HOME/.helios/bin" |
| 107 | path_add "$HOME/.radicle/bin" |
| 108 | path_add "$PNPM_HOME" |
| 109 | |
| 110 | export PATH |
| 111 | |
| 112 | # fnm (node version manager) |
| 113 | if command -v fnm >/dev/null 2>&1; then |
| 114 | eval "$(fnm env --shell zsh)" |
| 115 | path_add "$FNM_MULTISHELL_PATH/bin" |
| 116 | export PATH |
| 117 | # auto-switch node version on cd when .node-version / .nvmrc present |
| 118 | __fnm_autouse() { |
| 119 | if [ -f .node-version ] || [ -f .nvmrc ]; then |
| 120 | fnm use --silent-if-unchanged 2>/dev/null |
| 121 | fi |
| 122 | } |
| 123 | autoload -Uz add-zsh-hook |
| 124 | add-zsh-hook precmd __fnm_autouse |
| 125 | fi |
| 126 | |
| 127 | # cargo |
| 128 | [ -f "$HOME/.cargo/env" ] && . "$HOME/.cargo/env" |
| 129 | |
| 130 | # ============================================================================= |
| 131 | # Aliases |
| 132 | # ============================================================================= |
| 133 | alias ls='eza --icons=always' |
| 134 | alias ll='eza -l --icons=always' |
| 135 | alias la='eza -a --icons=always' |
| 136 | alias lg='lazygit' |
| 137 | alias nf='neofetch' |
| 138 | alias fl='fastfetch -c ~/.config/fastfetch/presets/examples/8.jsonc' |
| 139 | alias ff='fastfetch -c ~/.config/fastfetch/presets/examples/20.jsonc' |
| 140 | alias nvimrc='nvim ~/.config/nvim' |
| 141 | alias shitter='ssh itter' |
| 142 | alias tailscale='/Applications/Tailscale.app/Contents/MacOS/Tailscale' |
| 143 | alias ai='aichat' |
| 144 | alias system='macchina' |
| 145 | alias bonsai='cbonsai -li -t 0.4' |
| 146 | alias lst='lstr --icons --color=always --size' |
| 147 | alias keys='keysmasher' |
| 148 | alias timestamp='node -e "process.stdout.write(new Date().toISOString())"' |
| 149 | alias cleardns='sudo dscacheutil -flushcache; sudo killall -HUP mDNSResponder' |
| 150 | |
| 151 | # ------------------------------------------- |
| 152 | # Suffix Aliases - Open Files by Extension |
| 153 | # ------------------------------------------- |
| 154 | # Just type the filename to open it with the associated program |
| 155 | alias -s json=jless |
| 156 | alias -s md=bat |
| 157 | alias -s go='$EDITOR' |
| 158 | alias -s rs='$EDITOR' |
| 159 | alias -s txt=bat |
| 160 | alias -s log=bat |
| 161 | alias -s py='$EDITOR' |
| 162 | alias -s js='$EDITOR' |
| 163 | alias -s ts='$EDITOR' |
| 164 | alias -s html=open # macOS: open in default browser |
| 165 | |
| 166 | # ============================================================================= |
| 167 | # Functions |
| 168 | # ============================================================================= |
| 169 | # Open a sesh session via gum filter |
| 170 | t() { |
| 171 | local selected |
| 172 | selected=$(sesh list -i | gum filter --limit 1 --placeholder "Choose a session" --height 50 --prompt="> " --indicator.foreground="2" --match.foreground="2") |
| 173 | if [ -z "$selected" ]; then |
| 174 | echo "No session selected" |
| 175 | else |
| 176 | sesh connect "$selected" |
| 177 | fi |
| 178 | } |
| 179 | |
| 180 | # Fuzzy-find a file and open in nvim |
| 181 | nvimf() { |
| 182 | local file |
| 183 | file=$(fd --type f --hidden --exclude .git | fzf --preview "bat --color=always {}") |
| 184 | if [ -z "$file" ]; then |
| 185 | echo "No file selected" |
| 186 | else |
| 187 | nvim "$file" |
| 188 | fi |
| 189 | } |
| 190 | |
| 191 | # Install a tree-sitter parser into the nvim luarocks tree |
| 192 | tsi() { |
| 193 | local parser="$1" |
| 194 | local tree="$HOME/.local/share/nvim/site" |
| 195 | luarocks --lua-version=5.1 "--tree=$tree" install "tree-sitter-$parser" |
| 196 | } |
| 197 | |
| 198 | # nvim startup time -> grep summary line |
| 199 | ns() { |
| 200 | rm -f ~/.nvim-startup.txt |
| 201 | nvim --headless --startuptime ~/.nvim-startup.txt +qa |
| 202 | grep "NVIM STARTED" ~/.nvim-startup.txt |
| 203 | } |
| 204 | |
| 205 | # nvim startup time -> full bat dump |
| 206 | nh() { |
| 207 | rm -f ~/.nvim-startup.txt |
| 208 | nvim --headless --startuptime ~/.nvim-startup.txt +qa |
| 209 | bat ~/.nvim-startup.txt |
| 210 | } |
| 211 | |
| 212 | # Copy file contents to clipboard |
| 213 | cpf() { |
| 214 | cat "$1" | pbcopy |
| 215 | echo "✔︎ Copied to clipboard!" |
| 216 | } |
| 217 | |
| 218 | # Set orbiter key to personal |
| 219 | orbiter-personal() { |
| 220 | gum spin --spinner dot --spinner.foreground="2" --title "Updating..." -- orbiter auth --key "$(op read 'op://Personal/orbiter-api-key/credential')" |
| 221 | local check |
| 222 | check=$(gum style --foreground="2" "✓ ") |
| 223 | gum join "$check" "Orbiter key set to personal!" |
| 224 | } |
| 225 | |
| 226 | # Set orbiter key to orbiter account |
| 227 | orbiter-account() { |
| 228 | gum spin --spinner dot --spinner.foreground="2" --title "Updating..." -- orbiter auth --key "$(op read 'op://Personal/orbiter-account-api-key/credential')" |
| 229 | local check |
| 230 | check=$(gum style --foreground="2" "✓ ") |
| 231 | gum join "$check" "Orbiter key set to Orbiter account!" |
| 232 | } |
| 233 | |
| 234 | # UTC timestamp for blog frontmatter |
| 235 | blogdate() { |
| 236 | date -u +"%Y-%m-%dT%H:%M:%SZ" |
| 237 | } |
| 238 | |
| 239 | # ============================================================================= |
| 240 | # Completion |
| 241 | # ============================================================================= |
| 242 | autoload -Uz compinit |
| 243 | compinit |
| 244 | |
| 245 | # ============================================================================= |
| 246 | # Tooling init |
| 247 | # ============================================================================= |
| 248 | command -v zoxide >/dev/null 2>&1 && eval "$(zoxide init zsh)" |
| 249 | command -v starship >/dev/null 2>&1 && eval "$(starship init zsh)" |
| 250 | command -v fzf >/dev/null 2>&1 && eval "$(fzf --zsh)" |
| 251 | |
| 252 | # zsh-autosuggestions and syntax highlighting |
| 253 | source /opt/homebrew/share/zsh-autosuggestions/zsh-autosuggestions.zsh |
| 254 | source /opt/homebrew/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh |