Files
dotfiles/macos/.config/shell-common/98_theme.sh
2026-01-15 16:53:43 +00:00

17 lines
474 B
Bash

# Set themes for various CLI apps to match our terminal settings
# Theme flavour of the month: Nord
# Bat
if [ -x "$(command -v bat)" ]; then
export BAT_THEME="Nord"
fi
# Fzf
if [ -x "$(command -v bat)" ]; then
export FZF_DEFAULT_OPTS='
--color=fg:#e5e9f0,bg:#2E3440,hl:#81a1c1
--color=fg+:#e5e9f0,bg+:#2E3440,hl+:#81a1c1
--color=info:#eacb8a,prompt:#bf6069,pointer:#b48dac
--color=marker:#a3be8b,spinner:#b48dac,header:#a3be8b'
fi