Created
August 13, 2026 13:15
-
-
Save ArjixWasTaken/096c500643ada5eb9e267ac34ca30917 to your computer and use it in GitHub Desktop.
half-life theme ported to starship
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Half-Life theme for Starship | |
| # Ported from Oh My Posh's themes/half-life.omp.json. | |
| add_newline = false | |
| format = '$username[in ](fg:#FFFFFF)$directory$git_branch$git_status[λ ](fg:#D75F00)' | |
| [username] | |
| show_always = true | |
| style_user = 'fg:#7E46B6' | |
| style_root = 'fg:#7E46B6' | |
| format = '[$user ]($style)' | |
| [directory] | |
| style = 'fg:#87FF00' | |
| format = '[$path ]($style)' | |
| truncation_length = 0 | |
| truncate_to_repo = false | |
| [git_branch] | |
| symbol = '' | |
| style = 'fg:#5FD7FF' | |
| format = '[on](fg:#FFFFFF) [$branch]($style) ' | |
| [git_status] | |
| # Oh My Posh groups Git changes into staging and working-tree summaries. | |
| # The conditional groups below preserve its single-dot-per-group appearance. | |
| format = '([● $staged](fg:#87FF00) )([● $conflicted$untracked$modified$deleted$renamed$typechanged](fg:#D75F00) )' | |
| staged = '+${count}' | |
| conflicted = '=${count}' | |
| untracked = '?${count}' | |
| modified = '!${count}' | |
| deleted = '✘${count}' | |
| renamed = '»${count}' | |
| typechanged = 't${count}' | |
| stashed = '' | |
| ahead = '' | |
| behind = '' | |
| diverged = '' | |
| up_to_date = '' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment