20 lines
627 B
Nix
20 lines
627 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
flake,
|
|
...
|
|
}: {
|
|
enable = true;
|
|
defaultCommand = "fd --hidden --type f --exclude .git";
|
|
defaultOptions = with flake.self.theme.withHashtag; [
|
|
"--color=bg+:${base01},bg:${base00},spinner:${base0C},hl:${base0D}"
|
|
"--color=fg:${base04},header:${base0D},info:${base0A},pointer:${base0C}"
|
|
"--color=marker:${base0C},fg+:${base02},prompt:${base0A},hl+:${base0D}"
|
|
];
|
|
|
|
# Use ble.sh for completions, see
|
|
# modules/terminal-life/bash/default.nix -> bleopt complete_menu_style=desc
|
|
# and https://github.com/akinomyoga/ble.sh/wiki/Manual-%C2%A77-Completion
|
|
enableBashIntegration = false;
|
|
}
|