You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
397 B

{ config, lib, pkgs, ... }:
{
programs.starship = {
enable = true;
enableFishIntegration = true;
settings = {
add_newline = true;
command_timeout = 10000;
scan_timeout = 10;
character = {
success_symbol = "[](bold green)";
};
directory = {
truncation_length = 100;
truncate_to_repo = false;
};
};
};
}