From 9bd93c9d7b81def0e389ddd58b5115ca1d2dbe7a Mon Sep 17 00:00:00 2001 From: Eric Torres Date: Tue, 5 Aug 2025 22:29:18 -0700 Subject: [PATCH 1/2] zsh-macos/fzf.zsh: update Homebrew store path --- zsh-macos/.config/zsh-macos/fzf.zsh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/zsh-macos/.config/zsh-macos/fzf.zsh b/zsh-macos/.config/zsh-macos/fzf.zsh index 4eb1a0a..0b5e24f 100644 --- a/zsh-macos/.config/zsh-macos/fzf.zsh +++ b/zsh-macos/.config/zsh-macos/fzf.zsh @@ -4,8 +4,8 @@ fzf_version="$(fzf --version | cut -d ' ' -f1 | tr -d '[:space:]')" # Auto-completion # --------------- -[[ $- == *i* ]] && source "/usr/local/Cellar/fzf/${fzf_version}/shell/completion.zsh" +[[ $- == *i* ]] && source "/opt/homebrew/Cellar/fzf/${fzf_version}/shell/completion.zsh" # Key bindings # ------------ -source "/usr/local/Cellar/fzf/${fzf_version}/shell/key-bindings.zsh" +source "/opt/homebrew/Cellar/fzf/${fzf_version}/shell/key-bindings.zsh" From 32317bc9aa0dd28fe1a675ea974b9a4cdcd46153 Mon Sep 17 00:00:00 2001 From: Eric Torres Date: Sat, 9 Aug 2025 03:55:18 -0700 Subject: [PATCH 2/2] zsh-macos: update path for GNU utils --- zsh-macos/.config/zsh-macos/path.zsh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zsh-macos/.config/zsh-macos/path.zsh b/zsh-macos/.config/zsh-macos/path.zsh index 391b350..6daac3d 100644 --- a/zsh-macos/.config/zsh-macos/path.zsh +++ b/zsh-macos/.config/zsh-macos/path.zsh @@ -1,4 +1,4 @@ # PATH variable configuration -path=("/usr/local/sbin" "${HOME}/Scripts/macOS Helpers" "${HOME}/.local/bin" $path) +path=("/usr/local/sbin" "$(brew --prefix coreutils)/libexec/gnubin" "$(brew --prefix gnu-sed)/libexec/gnubin" "${HOME}/Scripts/macOS Helpers" "${HOME}/.local/bin" $path) export PATH