flavours: Add fzf styling

Added styling for fzf using the base16 schemes. Currently applies only
on newly opened shell environments but that's good enough for me.
This commit is contained in:
Marty Oehme 2024-06-13 10:19:20 +02:00
parent 6d82162f16
commit d0a2853bf2
Signed by: Marty
GPG key ID: EDBF2ED917B2EF6A
3 changed files with 22 additions and 7 deletions

View file

@ -21,15 +21,15 @@ export BIBFILE="${BIBFILE:-$LIBRARYROOT/library.bib}"
# these are my personal 'important' application settings
if exist nvim; then
export EDITOR="nvim"
export EDITOR="nvim"
elif exist vim; then
export EDITOR="vim"
export EDITOR="vim"
elif exist vi; then
export EDITOR="vi"
export EDITOR="vi"
elif exist micro; then
export EDITOR="micro"
export EDITOR="micro"
else
export EDITOR="nano"
export EDITOR="nano"
fi
export BROWSER="qutebrowser"
export TERMINAL="wezterm"
@ -54,5 +54,5 @@ export TERM=xterm-256color
. dark_bg
if exist fzf; then
export FZF_DEFAULT_OPTS="--bind 'tab:toggle+down,shift-tab:toggle+up,ctrl-g:top,ctrl-t:toggle-preview,ctrl-d:preview-half-page-down,ctrl-u:preview-half-page-up' --color=light -1 -m --delimiter :"
export FZF_DEFAULT_OPTS="$FZF_DEFAULT_OPTS --bind 'tab:toggle+down,shift-tab:toggle+up,ctrl-g:top,ctrl-t:toggle-preview,ctrl-d:preview-half-page-down,ctrl-u:preview-half-page-up' -1 -m --delimiter :"
fi