2021-05-30 19:10:28 +00:00
|
|
|
{
|
2023-01-28 20:49:10 +00:00
|
|
|
config,
|
|
|
|
pkgs,
|
|
|
|
...
|
|
|
|
}: {
|
2021-05-30 19:10:28 +00:00
|
|
|
enable = true;
|
|
|
|
defaultCommand = "fd --hidden --type f --exclude .git";
|
|
|
|
defaultOptions = [
|
|
|
|
"--color=bg+:#2d2a2e,bg:#1a181a,spinner:#ef9062,hl:#7accd7"
|
|
|
|
"--color=fg:#d3d1d4,header:#7accd7,info:#e5c463,pointer:#ef9062"
|
|
|
|
"--color=marker:#ef9062,fg+:#303030,prompt:#e5c463,hl+:#7accd7"
|
|
|
|
];
|
2023-11-10 18:48:06 +00:00
|
|
|
# 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;
|
2021-05-30 19:10:28 +00:00
|
|
|
}
|