diff options
author | Tobias Klauser <tklauser@distanz.ch> | 2022-08-06 01:34:40 +0200 |
---|---|---|
committer | Tobias Klauser <tklauser@distanz.ch> | 2022-08-06 01:34:40 +0200 |
commit | f7cbbb198d5300e47e987647a56628cfe6d7ee97 (patch) | |
tree | 4e98e99eb63ca73d709071e2f0df8426186b4311 /.zsh/zshrc | |
parent | f375102c212b2f8d5d2d8bb5075c77463a898fd0 (diff) |
zshrc: correct fzf base path if installed using homebrew
Diffstat (limited to '.zsh/zshrc')
-rw-r--r-- | .zsh/zshrc/99_fzf | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.zsh/zshrc/99_fzf b/.zsh/zshrc/99_fzf index 82f4aa7..f186c06 100644 --- a/.zsh/zshrc/99_fzf +++ b/.zsh/zshrc/99_fzf @@ -9,6 +9,7 @@ FZF="${HOME}/.fzf" # Installed using Homebrew [ -d $FZF ] || FZF="/usr/local/opt/fzf" +[ -d $FZF ] || FZF="/opt/homebrew/opt/fzf" if [ -d $FZF ] ; then path_append $FZF/bin |