Skip to content

Commit

Permalink
config(zsh): fix fzf-tab colors
Browse files Browse the repository at this point in the history
  • Loading branch information
haunt98 committed Oct 9, 2024
1 parent 89e38d8 commit ffa6c6f
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
10 changes: 8 additions & 2 deletions data/zsh/bottom-zshrc
Original file line number Diff line number Diff line change
Expand Up @@ -82,8 +82,7 @@ if command -v fzf &>/dev/null; then
--color=bg+:#313244,spinner:#f5e0dc,hl:#f38ba8 \
--color=fg:#cdd6f4,header:#f38ba8,info:#cba6f7,pointer:#f5e0dc \
--color=marker:#b4befe,fg+:#cdd6f4,prompt:#cba6f7,hl+:#f38ba8 \
--color=selected-bg:#45475a \
--multi"
--color=selected-bg:#45475a"

if command -v fd &>/dev/null; then
_fzf_compgen_path() {
Expand Down Expand Up @@ -114,6 +113,13 @@ if command -v fzf &>/dev/null; then
source /Users/anon/.zsh-plugins/fzf-tab/fzf-tab.plugin.zsh

zstyle ':completion:*' menu no
zstyle ':fzf-tab:*' fzf-flags \
--ansi \
--pointer='🔫' --prompt='🪓 ' \
--color=bg+:#313244,spinner:#f5e0dc,hl:#f38ba8 \
--color=fg:#cdd6f4,header:#f38ba8,info:#cba6f7,pointer:#f5e0dc \
--color=marker:#b4befe,fg+:#cdd6f4,prompt:#cba6f7,hl+:#f38ba8 \
--color=selected-bg:#45475a
fi
fi

Expand Down
2 changes: 1 addition & 1 deletion scripts/manual_update.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env bash

git -C ~/.zsh-plugins/fzf-tab pull master
git -C ~/.zsh-plugins/fzf-tab pull origin master

fnm install --lts

0 comments on commit ffa6c6f

Please sign in to comment.