Skip to content

Commit 76f85ed

Browse files
Merge pull request #213 from StrangeRanger/renovate/submodules-dotfiles-digest
2 parents 3bca773 + 8da523f commit 76f85ed

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,12 @@ Entries under the **Removed** section indicate items removed from the entire doc
1010

1111
## Unreleased
1212

13+
## 2025-09-30
14+
15+
### Changed
16+
17+
- changed(zshrc): update homebrew command-not-found handler path
18+
1319
## 2025-09-18
1420

1521
### Changed

includes/zshrc-files/zshrc-macos.zsh

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -206,8 +206,10 @@ fzf_tab="${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/fzf-tab/fzf-tab.plugin.zsh"
206206
[[ -f $HOME/.config/op/plugins.sh ]] && source "$HOME/.config/op/plugins.sh"
207207

208208
## Homebrew Command Not Found Handler
209-
HB_CNF_HANDLER="$(brew --repository)/Library/Taps/homebrew/homebrew-command-not-found/handler.sh"
210-
[[ -f $HB_CNF_HANDLER ]] && source "$HB_CNF_HANDLER"
209+
HOMEBREW_COMMAND_NOT_FOUND_HANDLER="$(brew --repository)/Library/Homebrew/command-not-found/handler.sh"
210+
if [[ -f "$HOMEBREW_COMMAND_NOT_FOUND_HANDLER" ]]; then
211+
source "$HOMEBREW_COMMAND_NOT_FOUND_HANDLER"
212+
fi
211213

212214

213215
####[ Zsh Style Configurations ]############################################################

submodules/dotfiles

0 commit comments

Comments
 (0)