.files/nix/homeModules/common/fzf.nix
Léana 江 0c1f72b6e2
Use milou theme
nvim: use milou theme

starship: update to milou scheme

fish: update to milou scheme

kitty: update to milou theme

starship: increase contrast in git modules

fzf: update to milou theme

nvim/lazy: update milou theme

fish/fzf.fish: use patdiff
2025-10-28 10:56:20 +08:00

13 lines
401 B
Nix

{
programs.fzf.defaultOptions = [
"--cycle"
"--border=none"
"--preview-window=wrap"
# TODO: This makes the unmatched harder to read
"--color=fg:#a0a1a7,bg:#fdf6e3,hl:#073642"
"--color=fg+:#a0a1a7,bg+:#f0e5c9,hl+:#073642"
"--color=info:#268bd2,prompt:#5f5faf,pointer:#073642"
"--color=marker:#268bd2,spinner:#5f5faf,header:#073642"
"--color=gutter:#eeeadd"
];
}