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
396 B
25 lines
396 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;
|
|
tuncate_to_repo = false;
|
|
};
|
|
};
|
|
};
|
|
}
|
|
|