fix(shell): guard brew shellenv against TCC and keep eza aliases

.zshenv runs brew shellenv for every zsh, including non-interactive and
GUI-launched shells; without a safe CWD the eval fails or triggers a
permission prompt when launched from a TCC-protected directory such as
~/Documents. Run it from /tmp.

The eza `l` alias (and the myip/e/ip/a/aa group) was defined before
oh-my-zsh loaded, so lib/directories.zsh overrode `l` back to ls. Move
the alias block after the oh-my-zsh source so the eza versions win.

Also document the ~/.config/zshrc personal-config mechanism and patch.sh
in the README, which previously only had a title.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
Yuhao Qing
2026-08-03 02:22:18 +08:00
co-authored by Cursor
parent 9377023e28
commit 12108ca3e4
3 changed files with 58 additions and 11 deletions
+5 -2
View File
@@ -1,5 +1,8 @@
# Homebrew on macOS. .zshenv runs for every zsh (interactive, scripts, GUI-launched),
# and brew shellenv needs a readable CWD: cd to a safe dir first so launching from a
# TCC-protected directory (e.g. ~/Documents) does not break the eval or prompt for access.
if [ -x /opt/homebrew/bin/brew ]; then if [ -x /opt/homebrew/bin/brew ]; then
eval "$(/opt/homebrew/bin/brew shellenv)" eval "$(cd /tmp && /opt/homebrew/bin/brew shellenv)"
elif [ -x /usr/local/bin/brew ]; then elif [ -x /usr/local/bin/brew ]; then
eval "$(/usr/local/bin/brew shellenv)" eval "$(cd /tmp && /usr/local/bin/brew shellenv)"
fi fi
+13 -8
View File
@@ -151,14 +151,9 @@ autoload -U compinit && compinit -C -d ~/.cache/zsh/.zcompdump # zsh-comp
SAVEHIST=50000 #save upto 50,000 lines in history. oh-my-zsh default is 10,000 SAVEHIST=50000 #save upto 50,000 lines in history. oh-my-zsh default is 10,000
#setopt hist_ignore_all_dups # dont record duplicated entries in history during a single session #setopt hist_ignore_all_dups # dont record duplicated entries in history during a single session
alias myip="wget -qO- https://wtfismyip.com/text" # quickly show external ip address # NOTE: personal aliases that must win over oh-my-zsh are defined AFTER
alias l="eza --hyperlink -lA --sort=modified --reverse --classify" # show all except . .. , sort by recent, / at the end of folders, clickable # `source "$ZSH/oh-my-zsh.sh"` below, because oh-my-zsh's lib/directories.zsh
alias e="exit" # re-defines several of them (e.g. `l`) when it loads.
alias ip="ip --color=auto"
## EZA - the better ls command
alias a='eza -la --git --colour-scale all -g --smart-group --icons always --hyperlink' # the new ls; add --hyperlink if you like
alias aa='eza -la --git --colour-scale all -g --smart-group --icons always -s modified -r --hyperlink' # sort by new
# CUSTOM FUNCTIONS # CUSTOM FUNCTIONS
@@ -217,6 +212,16 @@ source "$ZSH/oh-my-zsh.sh"
# Configs that can only work after "source $ZSH/oh-my-zsh.sh", such as Aliases that depend oh-my-zsh plugins # Configs that can only work after "source $ZSH/oh-my-zsh.sh", such as Aliases that depend oh-my-zsh plugins
# Personal aliases. Defined after oh-my-zsh so they win over oh-my-zsh's own
# aliases (lib/directories.zsh sets `l`, `ll`, etc. when it loads).
alias myip="wget -qO- https://wtfismyip.com/text" # quickly show external ip address
alias l="eza --hyperlink -lA --sort=modified --reverse --classify" # show all except . .. , sort by recent, / at the end of folders, clickable
alias e="exit"
alias ip="ip --color=auto"
## EZA - the better ls command
alias a='eza -la --git --colour-scale all -g --smart-group --icons always --hyperlink' # the new ls; add --hyperlink if you like
alias aa='eza -la --git --colour-scale all -g --smart-group --icons always -s modified -r --hyperlink' # sort by new
# ponytail: Trash aliases accept paths, not every rm flag; add a wrapper only if flag compatibility is required. # ponytail: Trash aliases accept paths, not every rm flag; add a wrapper only if flag compatibility is required.
if [[ "$OSTYPE" == darwin* && -x /usr/bin/trash ]]; then if [[ "$OSTYPE" == darwin* && -x /usr/bin/trash ]]; then
alias rm='/usr/bin/trash' alias rm='/usr/bin/trash'
+40 -1
View File
@@ -1 +1,40 @@
# Easy Zsh Setup # Easy Zsh Setup
One-command zsh environment: oh-my-zsh, powerlevel10k, and a curated plugin set
(autosuggestions, syntax-highlighting, completions, history-substring-search,
fzf-tab, k), plus eza, zoxide, fzf, and Nerd Fonts.
## Install
```bash
curl -fsSL https://git.miomio.moe/mio/easyzsh/raw/branch/master/install.sh | bash
```
Options: `--cp-hist` / `-c` imports bash history; `--non-interactive` / `-n`
skips the default-shell change. The installer backs up an existing `~/.zshrc`
and `~/.zshenv` before replacing them.
## Personal configuration
`~/.zshrc` is meant to stay close to this repo's canonical version. Put your own
tweaks in `~/.config/zshrc/` instead of editing `~/.zshrc` directly: every
`*.zsh` file there is sourced near the end of `~/.zshrc`, just before oh-my-zsh
loads, so it can add plugins and override defaults.
```bash
# ~/.config/zshrc/my.zsh
plugins+=(zsh-nvm) # add plugins
plugins=(${plugins:#zsh-autosuggestions}) # or remove one
alias gs='git status'
```
Ready-made configs from this repo's `zshrc/` directory (`fnm`, `nvm`, `pyenv`,
`merlin_devbox`, `merlin_worker`, `personal`, `p10k`) can be pulled in by name:
```bash
curl -fsSL https://git.miomio.moe/mio/easyzsh/raw/branch/master/patch.sh | bash -s -- fnm pyenv
```
Because these files load before oh-my-zsh, plugin and theme changes take effect;
aliases that must beat oh-my-zsh's own should be defined after oh-my-zsh loads
(see the note in `~/.zshrc`).