chore: updated zsh config 1bb033d3
Steve · 2026-08-14 14:04 2 file(s) · +254 −112
zsh/.zshrc (deleted) +0 −112
1 -
# history setup
2 -
HISTFILE=$HOME/.zhistory
3 -
SAVEHIST=1000
4 -
HISTSIZE=999
5 -
setopt share_history 
6 -
setopt hist_expire_dups_first
7 -
setopt hist_ignore_dups
8 -
setopt hist_verify
9 -
10 -
# completion using arrow keys (based on history)
11 -
bindkey '^[[A' history-search-backward
12 -
bindkey '^[[B' history-search-forward
13 -
14 -
# completion using vim keys
15 -
bindkey '^k' history-search-backward
16 -
bindkey '^j' history-search-forward
17 -
18 -
bindkey -v
19 -
20 -
source $(brew --prefix)/share/zsh-autosuggestions/zsh-autosuggestions.zsh
21 -
source $(brew --prefix)/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
22 -
23 -
ns() {
24 -
    rm -f ~/.nvim-startup.txt
25 -
    nvim --headless --startuptime ~/.nvim-startup.txt +qa
26 -
    grep "NVIM STARTED" ~/.nvim-startup.txt
27 -
}
28 -
29 -
nh() {
30 -
    rm -f ~/.nvim-startup.txt
31 -
    nvim --headless --startuptime ~/.nvim-startup.txt +qa
32 -
    bat ~/.nvim-startup.txt
33 -
}
34 -
35 -
alias ls="eza --icons=always"
36 -
alias ll="ls -l"
37 -
alias la="ls -a"
38 -
alias lg="lazygit"
39 -
alias nf="neofetch"
40 -
alias fl="fastfetch -c ~/.config/fastfetch/presets/examples/8.jsonc"
41 -
alias ff="fastfetch -c ~/.config/fastfetch/presets/examples/20.jsonc"
42 -
# alias cd="z"
43 -
alias ai="aichat"
44 -
alias inv='nvim $(fzf -m --preview="bat --color=always {}")'
45 -
46 -
alias gs="git status"
47 -
alias ga="git add ."
48 -
alias gc="git commit"
49 -
alias gd="git diff | delta"
50 -
alias gl="git log --all --graph --pretty=format:'%C(magenta)%h %C(white) %an  %ar%C(auto)  %D%n%s%n'"
51 -
alias gig="cp ~/.config/git/ignore $(pwd)/.gitignore"
52 -
53 -
gac() { git add . && git commit --message "$*" }
54 -
55 -
56 -
# Exports
57 -
export BAT_THEME="ansi"
58 -
export GOROOT="/usr/local/go"
59 -
export GOPATH="$HOME/.local/share/go"
60 -
export GOMODCACHE="$HOME/.local/share/go-mod-cache"
61 -
62 -
# PATH Configuration - Readable format with comments
63 -
# Homebrew
64 -
export PATH="$PATH:/opt/homebrew/bin"
65 -
export PATH="$PATH:$HOME/.local/share"
66 -
67 -
# Go language
68 -
export PATH="$PATH:/usr/local/go/bin"
69 -
export PATH="$PATH:$HOME/.local/share/go/bin"
70 -
71 -
# Rust
72 -
export PATH="$PATH:$HOME/.cargo/bin"
73 -
74 -
# Standard user binaries
75 -
export PATH="$PATH:$HOME/.local/bin"
76 -
export PATH="$PATH:/usr/local/bin"
77 -
78 -
# JavaScript/Node.js tools
79 -
export PATH="$PATH:$HOME/.bun/bin"
80 -
81 -
# Docker
82 -
export PATH="$PATH:/Applications/Docker.app/Contents/Resources/bin"
83 -
84 -
# Terminal/Shell tools
85 -
export PATH="$PATH:$HOME/.tmux/plugins/t-smart-tmux-session-manager/bin"
86 -
87 -
# Blockchain/Web3 tools
88 -
export PATH="$PATH:$HOME/.foundry/bin"
89 -
export PATH="$PATH:$HOME/.local/share/pinata"
90 -
export PATH="$PATH:$HOME/.helios/bin"
91 -
92 -
export FZF_DEFAULT_COMMAND='fd --type f --hidden --exclude ".git"' 
93 -
export FZF_DEFAULT_OPTS=$FZF_DEFAULT_OPTS'
94 -
  --color=fg:#c1c1c1,fg+:#ffffff,bg:#121113,bg+:#222222
95 -
  --color=hl:#5f8787,hl+:#fbcb97,info:#e78a53,marker:#fbcb97
96 -
  --color=prompt:#e78a53,spinner:#5f8787,pointer:#fbcb97,header:#aaaaaa
97 -
  --color=border:#333333,label:#888888,query:#ffffff
98 -
  --border="rounded" --border-label="" --preview-window="border-rounded" --prompt="> "
99 -
  --marker=">" --pointer="◆" --separator="─" --scrollbar="│"'
100 -
101 -
eval "$(zoxide init zsh)"
102 -
eval "$(starship init zsh)"
103 -
104 -
# bun completions
105 -
[ -s "/Users/steve-simkins/.bun/_bun" ] && source "/Users/steve-simkins/.bun/_bun"
106 -
107 -
# fzf
108 -
source <(fzf --zsh)
109 -
110 -
# bun
111 -
export BUN_INSTALL="$HOME/.bun"
112 -
export PATH="$BUN_INSTALL/bin:$PATH"
zsh/dot-zshrc (added) +254 −0
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