Files
dotfiles/starship.toml

52 lines
1.1 KiB
TOML
Raw Permalink Normal View History

2024-05-03 03:02:08 +01:00
format = """
$directory\
$git_branch\
2024-08-31 00:43:45 +01:00
$nix_shell\
$python\
2024-05-03 03:02:08 +01:00
$line_break\
$character"""
2025-07-07 09:30:28 +01:00
# Starship modules
2024-05-03 03:02:08 +01:00
[character]
2025-07-07 09:30:28 +01:00
# 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"
2024-05-03 03:02:08 +01:00
[git_branch]
2025-07-07 09:30:28 +01:00
format = " [ $branch]($style)"
2024-05-03 03:02:08 +01:00
style = "yellow"
[git_status]
2024-05-03 03:24:05 +01:00
format = "[[( [::](dimmed) $conflicted$untracked$modified$staged$renamed$deleted)](blue) ($ahead_behind$stashed)]($style)"
2024-05-03 03:02:08 +01:00
style = "cyan"
2024-05-03 03:24:05 +01:00
conflicted = " "
untracked = "󰰨 "
modified = "󰯲 "
staged = "󰰢 "
renamed = "󰰟 "
deleted = "󰯵 "
2024-05-03 03:02:08 +01:00
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"
2024-08-31 00:43:45 +01:00
[nix_shell]
format = ' [$symbol$state( \($name\))]($style) '
symbol = " "
style = "dimmed purple"