feature(starship): switch to craige theme

This commit is contained in:
Serĉanto de Scio 2024-09-24 12:29:59 +10:00
parent 870864cf9a
commit 97f5970e76
Signed by: sercanto
GPG key ID: A4122FF3971B6865
2 changed files with 43 additions and 1 deletions

View file

@ -0,0 +1,42 @@
# Use the color palette
palette = "dracula"
[aws]
style = "bold orange"
[character]
error_symbol = "[λ:](bold red)"
success_symbol = "[λ:](bold green)"
[cmd_duration]
style = "bold yellow"
[directory]
style = "bold green"
[git_branch]
style = "bold pink"
[git_status]
style = "bold red"
[hostname]
style = "bold purple"
[username]
format = "[$user]($style) on "
style_user = "bold cyan"
# Define Dracula color palette
[palettes.dracula]
background = "#282a36"
current_line = "#44475a"
foreground = "#f8f8f2"
comment = "#6272a4"
cyan = "#8be9fd"
green = "#50fa7b"
orange = "#ffb86c"
pink = "#ff79c6"
purple = "#bd93f9"
red = "#ff5555"
yellow = "#f1fa8c"

View file

@ -18,7 +18,7 @@ in {
programs.starship = {
enable = true;
presets = ["nerd-font-symbols"];
settings = pkgs.lib.importTOML ./dracula.toml;
settings = pkgs.lib.importTOML ./craige.toml;
};
};
}