nix-configs/modules/shell/starship.nix

42 lines
1.1 KiB
Nix
Raw Permalink Normal View History

{...}: {
home-manager.users.jade = {pkgs, ...}: {
programs.starship = {
enable = true;
2024-08-02 19:29:25 +00:00
enableNushellIntegration = false;
settings = {
format = "$all$directory$character";
character = {
success_symbol = "[\\$](green)";
error_symbol = "[X](red)";
};
git_branch = {
format = "\\[[$symbol$branch]($style)\\]";
symbol = " ";
};
git_status = {
format = "([\\[$all_status$ahead_behind\\]]($style))";
};
haskell = {
format = "\\[[$symbol($version)]($style)\\]";
symbol = " ";
};
cmd_duration = {
format = "\\[[ $duration]($style)\\]";
};
nix_shell = {
format = "\\[[$symbol$state( \\($name\\))]($style)\\]";
symbol = " ";
};
rust = {
format = "\\[[$symbol($version)]($style)\\]";
symbol = " ";
};
2023-11-20 08:31:46 +00:00
package = {
format = "\\[[$symbol$version]($style)\\]";
symbol = " ";
};
};
};
};
}