๐Ÿ”’ Backup for my config files
dotfiles
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

set `$FZF_DEFAULT_OPTS` variable on startup

+17
+17
.config/fish/conf.d/fzf.fish
··· 1 + if status is-interactive 2 + set -l bg_color "--color=bg+:#313244,bg:#1E1E2E,spinner:#F5E0DC,hl:#F38BA8" 3 + set -l fg_color "--color=fg:#CDD6F4,header:#F38BA8,info:#CBA6F7,pointer:#F5E0DC" 4 + set -l marker_color "--color=marker:#B4BEFE,fg+:#CDD6F4,prompt:#CBA6F7,hl+:#F38BA8" 5 + set -l selected_color "--color=selected-bg:#45475A" 6 + set -l border_color "--color=border:#6C7086,label:#CDD6F4" 7 + 8 + set -l opts ( string join " " -- \ 9 + $bg_color \ 10 + $fg_color \ 11 + $marker_color \ 12 + $selected_color \ 13 + $border_color\ 14 + ) 15 + 16 + set -gx FZF_DEFAULT_OPTS $opts 17 + end