debian-dots

dotfiles (does the obvious)
git clone [email protected]:dracuxan/debian-dots.git
Log | Files | Refs | README | LICENSE

starship.toml (811B)


      1 "$schema" = 'https://starship.rs/config-schema.json'
      2 
      3 format = """
      4 $username\
      5 $hostname\
      6 $directory\
      7 $git_branch\
      8 $git_state\
      9 $git_status\
     10 $cmd_duration\
     11 $line_break\
     12 $character"""
     13 
     14 [directory]
     15 style = "fg:#a0a0a0"
     16 
     17 [character]
     18 success_symbol = "[❯](bold #99ffe4)"
     19 error_symbol = "[❯](red)"
     20 vimcmd_symbol = "[❮](bold #ff8080)"
     21 
     22 [git_branch]
     23 format = "[$branch]($style)"
     24 style = "bright-black"
     25 
     26 [git_status]
     27 format = "[[(*$conflicted$untracked$modified$staged$renamed$deleted)](218) ($ahead_behind$stashed)]($style)"
     28 style = "cyan"
     29 conflicted = "​"
     30 untracked = "​"
     31 modified = "​"
     32 staged = "​"
     33 renamed = "​"
     34 deleted = "​"
     35 stashed = "≡"
     36 
     37 [git_state]
     38 format = '\([$state( $progress_current/$progress_total)]($style)\) '
     39 style = "bright-black"
     40 
     41 [cmd_duration]
     42 format = "[$duration](fg:#6b6f82) "