From 346d3725231141e08d050a8b6442c0308676cc6b Mon Sep 17 00:00:00 2001 From: Hau Nguyen Date: Sat, 28 Sep 2024 13:26:37 +0700 Subject: [PATCH] config(zsh): fix fzf colors See: - https://github.com/catppuccin/fzf/issues/9 - https://github.com/catppuccin/fzf/issues/10 - https://github.com/catppuccin/fzf/issues/11 --- data/zsh/bottom-zshrc | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/data/zsh/bottom-zshrc b/data/zsh/bottom-zshrc index 5984169..67e8731 100644 --- a/data/zsh/bottom-zshrc +++ b/data/zsh/bottom-zshrc @@ -65,12 +65,15 @@ if command -v fzf &>/dev/null; then fi # https://github.com/catppuccin/fzf + # Remove bg for transparent terminal export FZF_DEFAULT_OPTS="\ --ansi \ --pointer='🔫' --prompt='🪓 ' \ - --color=bg+:#313244,bg:#1e1e2e,spinner:#f5e0dc,hl:#f38ba8 \ + --color=bg+:#313244,spinner:#f5e0dc,hl:#f38ba8 \ --color=fg:#cdd6f4,header:#f38ba8,info:#cba6f7,pointer:#f5e0dc \ - --color=marker:#f5e0dc,fg+:#cdd6f4,prompt:#cba6f7,hl+:#f38ba8" + --color=marker:#b4befe,fg+:#cdd6f4,prompt:#cba6f7,hl+:#f38ba8 \ + --color=selected-bg:#45475a \ + --multi" if command -v bat &>/dev/null; then export FZF_CTRL_T_OPTS="--preview 'bat --color=always --line-range=:500 {}'"