diff options
| author | Ruben Beltran del Rio <ruben@unlimited.pizza> | 2022-04-15 12:24:28 +0200 |
|---|---|---|
| committer | Ruben Beltran del Rio <ruben@unlimited.pizza> | 2022-04-15 12:24:28 +0200 |
| commit | 3945b868e04daaff719b56a4666c4cb66d63b7a7 (patch) | |
| tree | ce0a8d89289c083f4a91dc6c590bd228419b35a8 /runcoms | |
| parent | 00b5fea6b36c308c897e7f23513f600cbf36ebda (diff) | |
Fix path check for intel macs fzf
Diffstat (limited to 'runcoms')
| -rw-r--r-- | runcoms/zshrc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runcoms/zshrc b/runcoms/zshrc index 6d2b00d..a18511b 100644 --- a/runcoms/zshrc +++ b/runcoms/zshrc @@ -57,7 +57,7 @@ export FZF_DEFAULT_OPTS='--preview ''bat --style=numbers --color=always {} | hea if [[ -s "/opt/homebrew/bin/brew" ]]; then export FZF_VIM_PATH=/opt/homebrew/opt/fzf else - if [[ -s "/opt/homebrew/bin/brew" ]]; then + if [[ -s "/usr/local/bin/brew" ]]; then export FZF_VIM_PATH=/usr/local/opt/fzf else export FZF_VIM_PATH=/usr/share/doc/fzf/examples |