nixos/home-modules/starship.nix

30 lines
672 B
Nix
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{ ... }: {
programs.starship = {
enable = true;
enableZshIntegration = true;
settings = {
username.format = "[$user](213) ";
hostname = {
disabled = false;
ssh_symbol = "🌐";
style = "bold green";
};
nix_shell = {
format = "[$symbol$state nix-shell]($style) ";
symbol = " ";
pure_msg = "p";
impure_msg = "i";
};
golang = {
format = "go [$symbol $version ]($style)";
symbol = "🦫";
};
character = {
error_symbol = "[](bold red)";
};
directory = {
truncation_symbol = ".../";
};
};
};
}