52 lines
1.1 KiB
TOML
52 lines
1.1 KiB
TOML
format = """
|
||
$directory\
|
||
$git_branch\
|
||
$nix_shell\
|
||
$python\
|
||
$line_break\
|
||
$character"""
|
||
|
||
|
||
# Starship modules
|
||
[character]
|
||
# Note the use of Catppuccin color 'peach'
|
||
success_symbol = "[[](green) ❯](peach)"
|
||
error_symbol = "[[](red) ❯](peach)"
|
||
vimcmd_symbol = "[ ❮](subtext1)" # For use with zsh-vi-mode
|
||
|
||
[directory]
|
||
format = '[$path]($style)'
|
||
style = "bold green"
|
||
|
||
[git_branch]
|
||
format = " [ $branch]($style)"
|
||
style = "yellow"
|
||
|
||
[git_status]
|
||
format = "[[( [::](dimmed) $conflicted$untracked$modified$staged$renamed$deleted)](blue) ($ahead_behind$stashed)]($style)"
|
||
style = "cyan"
|
||
conflicted = " "
|
||
untracked = " "
|
||
modified = " "
|
||
staged = " "
|
||
renamed = " "
|
||
deleted = " "
|
||
stashed = "≡"
|
||
|
||
[git_state]
|
||
format = '\([$state( $progress_current/$progress_total)]($style)\) '
|
||
style = "bright-black"
|
||
|
||
[cmd_duration]
|
||
format = "[( took $duration\n)]($style)"
|
||
style = "dimmed"
|
||
|
||
[python]
|
||
format = "[$virtualenv]($style) "
|
||
style = "bright-black"
|
||
|
||
[nix_shell]
|
||
format = ' [$symbol$state( \($name\))]($style) '
|
||
symbol = " "
|
||
style = "dimmed purple"
|