From fa1edd83d2bff3a3b152e16677f60920bdf11e35 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 30 Sep 2025 21:45:44 +0000 Subject: [PATCH 1/2] chore(deps): update submodules/dotfiles digest to 90d97aa --- submodules/dotfiles | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/submodules/dotfiles b/submodules/dotfiles index aabca06..90d97aa 160000 --- a/submodules/dotfiles +++ b/submodules/dotfiles @@ -1 +1 @@ -Subproject commit aabca06c59ee87ef15f78a801f6e8ecbeb7fca87 +Subproject commit 90d97aae7e958d493837f1a6a5ab54ecca44a6cb From 8da523f8487142e121a06f27e6debb9d12b4c9db Mon Sep 17 00:00:00 2001 From: GitHub Actions Bot Date: Tue, 30 Sep 2025 21:45:58 +0000 Subject: [PATCH 2/2] Update files based on submodule changes --- CHANGELOG.md | 6 ++++++ includes/zshrc-files/zshrc-macos.zsh | 6 ++++-- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 96dda35..e0d7725 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,12 @@ Entries under the **Removed** section indicate items removed from the entire doc ## Unreleased +## 2025-09-30 + +### Changed + +- changed(zshrc): update homebrew command-not-found handler path + ## 2025-09-18 ### Changed diff --git a/includes/zshrc-files/zshrc-macos.zsh b/includes/zshrc-files/zshrc-macos.zsh index d5b4ff4..2eca876 100644 --- a/includes/zshrc-files/zshrc-macos.zsh +++ b/includes/zshrc-files/zshrc-macos.zsh @@ -206,8 +206,10 @@ fzf_tab="${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/fzf-tab/fzf-tab.plugin.zsh" [[ -f $HOME/.config/op/plugins.sh ]] && source "$HOME/.config/op/plugins.sh" ## Homebrew Command Not Found Handler -HB_CNF_HANDLER="$(brew --repository)/Library/Taps/homebrew/homebrew-command-not-found/handler.sh" -[[ -f $HB_CNF_HANDLER ]] && source "$HB_CNF_HANDLER" +HOMEBREW_COMMAND_NOT_FOUND_HANDLER="$(brew --repository)/Library/Homebrew/command-not-found/handler.sh" +if [[ -f "$HOMEBREW_COMMAND_NOT_FOUND_HANDLER" ]]; then + source "$HOMEBREW_COMMAND_NOT_FOUND_HANDLER" +fi ####[ Zsh Style Configurations ]############################################################