Skip to content

Commit

Permalink
fix fzf-tab colors in latest version
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinhughes27 committed Jan 3, 2025
1 parent 42285da commit acbd474
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions zsh/fzf
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,13 @@ export FZF_DEFAULT_OPTS="--reverse --height=50%
# source fzf
# git clone --depth 1 https://github.com/junegunn/fzf.git ~/.fzf
# then run ~/.fzf/install to create this file.
[ -f ~/.fzf.zsh ] && source ~/.fzf.zsh
if [ -f ~/.fzf.zsh ]; then
source ~/.fzf.zsh
fi

# source fzf-tab
# git clone --depth 1 https://github.com/Aloxaf/fzf-tab ~/.fzf-tab
[ -d ~/.fzf-tab ] && source ~/.fzf-tab/fzf-tab.plugin.zsh
if [ -d ~/.fzf-tab ]; then
zstyle ':fzf-tab:*' use-fzf-default-opts yes
source ~/.fzf-tab/fzf-tab.plugin.zsh
fi

0 comments on commit acbd474

Please sign in to comment.