.. | ||
README.md |
èšå®
Starshipã®èšå®ãéå§ããã«ã¯ã~/.config/starship.toml
ãã¡ã€ã«ãäœæããŸãã
mkdir -p ~/.config && touch ~/.config/starship.toml
Starshipã®ãã¹ãŠã®èšå®ã¯ããã®TOMLãã¡ã€ã«ã§è¡ãããŸãã
# Get editor completions based on the config schema
"$schema" = 'https://starship.rs/config-schema.json'
# Inserts a blank line between shell prompts
add_newline = true
# Replace the 'â¯' symbol in the prompt with 'â'
[character] # The name of the module we are configuring is 'character'
success_symbol = '[â](bold green)' # The 'success_symbol' segment is being set to 'â' with the color 'bold green'
# Disable the package module, hiding it from the prompt completely
[package]
disabled = true
Config File Location
STARSHIP_CONFIG
ç°å¢å€æ°ã䜿çšããããšã«ãã£ãŠãããã©ã«ãã®èšå®ãã¡ã€ã«ã®å Žæãå€æŽã§ããŸãã
export STARSHIP_CONFIG=~/example/non/default/path/starship.toml
PowerShell (Windows) ã§åæ§ã« $PROFILE
ã«ãã®è¡ãè¿œå ããŸãã
$ENV:STARSHIP_CONFIG = "$HOME\example\non\default\path\starship.toml"
ãŸãã¯ãCmd (Windows) ã®å Žåãstarship.lua
ã«ãã®è¡ãè¿œå ããŸãã
os.setenv('STARSHIP_CONFIG', 'C:\\Users\\user\\example\\non\\default\\path\\starship.toml')
ãã®ã³ã°
ããã©ã«ãã§ã¯ãStarship ã¯èŠåããšã©ãŒãã°ã ~/.cache/starship/session_${STARSHIP_SESSION_KEY}.log
ãšããååã®ãã¡ã€ã«ã«åºåããŸãããã®ã»ãã·ã§ã³ããŒã¯ã¿ãŒããã«ã®ã€ã³ã¹ã¿ã³ã¹ã«çžåœããŸãã ãããããã㯠STARSHIP_CACHE
ãšããç°å¢å€æ°ã䜿ã£ãŠå€æŽã§ããŸãïŒ
export STARSHIP_CACHE=~/.starship/cache
PowerShell (Windows) ã§åæ§ã« $PROFILE
ã«ãã®è¡ãè¿œå ããŸãã
$ENV:STARSHIP_CACHE = "$HOME\AppData\Local\Temp"
ãŸãã¯ãCmd (Windows) ã®å Žåãstarship.lua
ã«ãã®è¡ãè¿œå ããŸãã
os.setenv('STARSHIP_CACHE', 'C:\\Users\\user\\AppData\\Local\\Temp')
çšèª
ã¢ãžã¥ãŒã«: OSã®ã³ã³ããã¹ãæ å ±ã«åºã¥ããŠæ å ±ãæäŸããããã³ããå ã®ã³ã³ããŒãã³ãã§ãã äŸãã°ãçŸåšã®ãã£ã¬ã¯ããªã Node.js ã®ãããžã§ã¯ãã®å ŽåãçŸåšã³ã³ãã¥ãŒã¿ã«ã€ã³ã¹ããŒã«ãããŠãã Node.js ã®ããŒãžã§ã³ã衚瀺ãããŸãã
å€æ°: ã¢ãžã¥ãŒã«ãæäŸããæ å ±ãå«ããµãã³ã³ããŒãã³ããå°ããããã äŸãã°ã"nodejs" ã¢ãžã¥ãŒã«ã® "version" å€æ°ã«ã¯ãNode.js ã®çŸåšã®ããŒãžã§ã³ãå«ãŸããŠããŸãã
æ
£äŸã«ãããã»ãšãã©ã®ã¢ãžã¥ãŒã«ã«ã¯ããã©ã«ãã®ç«¯æ«è²ã®æ¥é èŸïŒ"nodejs" ã® via
ãªã©ïŒãšæ¥å°ŸèŸãšããŠç©ºã®ã¹ããŒã¹ããããŸãã
Strings
In TOML syntax, text values are declared with '
, "
, '''
, or """
.
The following Starship syntax symbols have special usage in a format string and must be escaped to display as that character: $ [ ] ( )
.
Symbol | Type | Notes |
---|---|---|
' |
literal string | less escaping |
" |
string | more escaping |
''' |
multi-line literal string | less escaping |
""" |
multi-line string | more escaping, newlines in declarations can be ignored |
äŸïŒ
# literal string
format = 'âº\â» '
# regular string
format = "âº\\â» "
# escaping Starship symbols
format = '\[\$\] '
When using line breaks, multi-line declarations can be used. For example, if you want to print a $
symbol on a new line, the following values for format
are equivalent:
# with literal string
format = '''
\$'''
# with multiline basic string
format = """
\\$"""
# with basic string
format = "\n\\$"
In multiline basic strings, newlines can be used for formatting without being present in the value by escaping them.
format = """
line1\
line1\
line1
line2\
line2\
line2
"""
æååã®ãã©ãŒããã
æååã®æžåŒã¯ãã¢ãžã¥ãŒã«ããã¹ãŠã®å€æ°ãåºåããæžåŒã§ãã ã»ãšãã©ã®ã¢ãžã¥ãŒã«ã«ã¯ãã¢ãžã¥ãŒã«ã®è¡šç€ºåœ¢åŒãèšå®ãã format
ãšãããšã³ããªããããŸãã ããã¹ããå€æ°ãããã³ããã¹ãã°ã«ãŒãããã©ãŒãããæååã§äœ¿çšã§ããŸãã
å€æ°
å€æ°ã«ã¯ã $
èšå·ãšããã®å€æ°ã®ååãç¶ããŸãã å€æ°ã®ååã«ã¯è±åãšæ°åã_
ã®ã¿ãå«ããããšãã§ããŸãã
äŸïŒ
'$version'
is a format string with a variable namedversion
.'$git_branch$git_commit'
is a format string with two variables namedgit_branch
andgit_commit
.'$git_branch $git_commit'
has the two variables separated with a space.
ããã¹ãã°ã«ãŒã
ããã¹ãã°ã«ãŒãã¯äºã€ã®ç°ãªãéšåã§æ§æãããŠããŸãã
[]
ã§å²ãŸããŠããæåã®éšåã¯ã ãã©ãŒãããæåå ã§ãã ããã¹ããå€æ°ããŸãã¯å
¥ãåã«ãªã£ãããã¹ãã°ã«ãŒããè¿œå ã§ããŸãã
2 çªç®ã®éšåã¯ã ()
ã§å²ãŸããŠãã ã¹ã¿ã€ã«æåå ã§ãã ããã¯ãæåã®ãã©ãŒãããæååã®ã¹ã¿ã€ã«ãèšå®ããããã«äœ¿çšã§ããŸãã
äŸïŒ
'[on](red bold)'
will print a stringon
with bold text colored red.'[â $version](bold green)'
will print a symbolâ
followed by the content of variableversion
, with bold text colored green.'[a [b](red) c](green)'
will printa b c
withb
red, anda
andc
green.
ã¹ã¿ã€ã«ã®èšå®
Starshipã®ã»ãšãã©ã®ã¢ãžã¥ãŒã«ã§ã¯ã衚瀺ã¹ã¿ã€ã«ãèšå®ã§ããŸãã ããã¯ãèšå®ãæå®ããæååã§ãããšã³ããªïŒstyle
ïŒã§è¡ãããŸãã ã¹ã¿ã€ã«æååã®äŸãšãã®æ©èœã次ã«ç€ºããŸãã å®å
šãªæ§æã®è©³çŽ°ã«ã€ããŠã¯ã詳现㯠é«åºŠãªèšå®ãåç
§ããŠãã ãã ã
'fg:green bg:blue'
sets green text on a blue background'bg:blue fg:bright-green'
sets bright green text on a blue background'bold fg:27'
sets bold text with ANSI color 27'underline bg:#bf5700'
sets underlined text on a burnt orange background'bold italic fg:purple'
sets bold italic purple text''
explicitly disables all styling
ã¹ã¿ã€ãªã³ã°ãã©ã®ããã«èŠãããã¯ã端æ«ãšãã¥ã¬ãŒã¿ã«ãã£ãŠå¶åŸ¡ãããããšã«æ³šæããŠãã ããã ããšãã°ãäžéšã®ç«¯æ«ãšãã¥ã¬ãŒã¿ã¯ããã¹ãã倪åã«ãã代ããã«è²ãæããããŸãããŸããäžéšã®ã«ã©ãŒããŒãã¯éåžžã®è²ãšæããè²ãšåãå€ã䜿çšããŸãã ãŸããæäœã®ããã¹ããååŸããã«ã¯ã端æ«ã§æäœããµããŒãããå¿ èŠããããŸãã
æ¡ä»¶ä»ããã©ãŒãããèšå®
(
ãš )
å
ã®ãã¹ãŠã®å€æ°ã空ã®å Žåãæ¡ä»¶ä»ãæžåŒæååã¯ã¬ã³ããªã³ã°ãããŸããã
äŸïŒ
'(@$region)'
will show nothing if the variableregion
isNone
or empty string, otherwise@
followed by the value of region.'(some text)'
will always show nothing since there are no variables wrapped in the braces.- When
$combined
is a shortcut for\[$a$b\]
,'($combined)'
will show nothing only if$a
and$b
are bothNone
. This works the same as'(\[$a$b\] )'
.
Negative matching
Many modules have detect_extensions
, detect_files
, and detect_folders
variables. These take lists of strings to match or not match. "Negative" options, those which should not be matched, are indicated with a leading '!' character. The presence of any negative indicator in the directory will result in the module not being matched.
Extensions are matched against both the characters after the last dot in a filename, and the characters after the first dot in a filename. For example, foo.bar.tar.gz
will be matched against bar.tar.gz
and gz
in the detect_extensions
variable. Files whose name begins with a dot are not considered to have extensions at all.
To see how this works in practice, you could match TypeScript but not MPEG Transport Stream files thus:
detect_extensions = ['ts', '!video.ts', '!audio.ts']
ããã³ãã
ããã¯ãããã³ããå šäœã®ãªãã·ã§ã³ã®ãªã¹ãã§ãã
ãªãã·ã§ã³
ãªãã·ã§ã³ | ããã©ã«ã | 説æ |
---|---|---|
format |
link | ããã³ããã®åœ¢åŒãèšå®ããŸãã |
right_format |
'' |
å³ããã³ããã®æå¹åãåç §ããŠãã ããã |
scan_timeout |
30 |
ãã¡ã€ã«ãã¹ãã£ã³ããéã®ã¿ã€ã ã¢ãŠãæé (milliseconds) ã§ãã |
command_timeout |
500 |
Starshipã«ãã£ãŠå®è¡ãããã³ãã³ãã®ã¿ã€ã ã¢ãŠãæé (milliseconds) ã§ãã |
add_newline |
true |
ã·ã§ã«ããã³ããã®éã«ç©ºè¡ãæ¿å ¥ããŸãã |
palette |
'' |
Sets which color palette from palettes to use. |
palettes |
{} |
Collection of color palettes that assign colors to user-defined names. Note that color palettes cannot reference their own color definitions. |
èšå®äŸ
# ~/.config/starship.toml
# Use custom format
format = '''
[ââââââââââââââââââââ>](bold green)
[â](bold green)$directory$rust$package
[ââ>](bold green) '''
# Wait 10 milliseconds for starship to check files under the current directory.
scan_timeout = 10
# Disable the blank line at the start of the prompt
add_newline = false
# Set 'foo' as custom color palette
palette = 'foo'
# Define custom colors
[palettes.foo]
# Overwrite existing color
blue = '21'
# Define new color
mustard = '#af8700'
ããã©ã«ãã®ããã³ãããã©ãŒããã
ããã©ã«ãã® format
ã¯ã空ãŸã㯠format
ãæå®ãããŠããªãå Žåãããã³ããã®ãã©ãŒããããå®çŸ©ããããã«äœ¿çšãããŸãã ããã©ã«ãã¯æ¬¡ã®ãšããã§ãã
format = '$all'
# Which is equivalent to
format = """
$username\
$hostname\
$localip\
$shlvl\
$singularity\
$kubernetes\
$directory\
$vcsh\
$git_branch\
$git_commit\
$git_state\
$git_metrics\
$git_status\
$hg_branch\
$docker_context\
$package\
$c\
$cmake\
$cobol\
$daml\
$dart\
$deno\
$dotnet\
$elixir\
$elm\
$erlang\
$golang\
$guix_shell\
$haskell\
$haxe\
$helm\
$java\
$julia\
$kotlin\
$lua\
$nim\
$nodejs\
$ocaml\
$opa\
$perl\
$php\
$pulumi\
$purescript\
$python\
$raku\
$rlang\
$red\
$ruby\
$rust\
$scala\
$swift\
$terraform\
$vlang\
$vagrant\
$zig\
$buf\
$nix_shell\
$conda\
$meson\
$spack\
$memory_usage\
$aws\
$gcloud\
$openstack\
$azure\
$env_var\
$crystal\
$custom\
$sudo\
$cmd_duration\
$line_break\
$jobs\
$battery\
$time\
$status\
$os\
$container\
$shell\
$character"""
ããã©ã«ãã®ãã©ãŒããããæ¡åŒµãããã ããªãã$all
ã䜿çšã§ããŸãã ãã©ãŒãããã«æ瀺çã«è¿œå ããã¢ãžã¥ãŒã«ã¯éè€ããŸããã äŸ:
# Move the directory to the second line
format = '$all$directory$character'
AWS
aws
ã¢ãžã¥ãŒã«ã¯ãäžæçãªè³æ Œæ
å ±ã䜿çšããå ŽåãçŸåšã®AWSãªãŒãžã§ã³ãšãããã¡ã€ã«ãããã³æå¹æéã¿ã€ããŒã衚瀺ããŸãã ã¢ãžã¥ãŒã«ã®åºåã¯ãå¿
èŠã«å¿ããŠAWS_REGION
ãAWS_DEFAULT_REGION
ãšAWS_PROFILE
ã®ç°å¢å€æ°ãšã~/.aws/config
ãš~/.aws/credentials
ã®ãã¡ã€ã«ã䜿çšãããŸãã
ã¢ãžã¥ãŒã«ã¯ãè³æ Œæ
å ±ã~/.aws/credentials
ã«ããå ŽåããŸãã¯~/.aws/config
ã«credential_process
ãŸãã¯sso_start_url
ãå®çŸ©ãããŠããå Žåã«ã®ã¿ãããã¡ã€ã«ã衚瀺ããŸãã ãããã¯ãç°å¢å€æ°ã«AWS_ACCESS_KEY_ID
ãAWS_SECRET_ACCESS_KEY
ãŸãã¯AWS_SESSION_TOKEN
ã®ãããããå®çŸ©ãããŠããã°æ¡ä»¶ãæºãããŸãã ããforce_display
ã®ãªãã·ã§ã³ãtrue
ã«èšå®ããå Žåãäžèšã®æ¡ä»¶ã«ããè³æ Œæ
å ±ãæ€åºãããªãå Žåã§ããå©çšå¯èœãªãã¹ãŠã®æ
å ±ã衚瀺ãããŸãã
aws-vaultã䜿ãå Žåãç°å¢å€æ°AWS_VAULT
ãããããã¡ã€ã«ããç°å¢å€æ°AWS_SESSION_EXPIRATION
ããè³æ Œæ
å ±ã®æå¹æéãèªã¿èŸŒãŸããŸãã
awsu ã䜿ãå Žåããã®ãããã¡ã€ã«ã¯ç°å¢å€æ° AWSU_PROFILE
ããèªãŸããŸãã
AWSumeã䜿ãå Žåãç°å¢å€æ°AWSUME_PROFILE
ãããããã¡ã€ã«ããç°å¢å€æ°AWSUME_EXPIRATION
ããè³æ Œæ
å ±ã®æå¹æéãèªã¿èŸŒãŸããŸãã
When using saml2aws the expiration information obtained from ~/.aws/credentials
falls back to the x_security_token_expires
key.
ãªãã·ã§ã³
ãªãã·ã§ã³ | ããã©ã«ã | 説æ |
---|---|---|
format |
'on [$symbol($profile )(\($region\) )(\[$duration\] )]($style)' |
module ã®ãã©ãŒãããã§ãã |
symbol |
'âïž ' |
çŸåšã®AWSãããã¡ã€ã«ã衚瀺ããåã«è¡šç€ºãããèšå·ã§ãã |
region_aliases |
{} |
AWSåã«å ããŠè¡šç€ºãããªãŒãžã§ã³ã®ãšã€ãªã¢ã¹ã§ãã |
profile_aliases |
{} |
AWSåã«å ããŠè¡šç€ºãããããã¡ã€ã«ã®ãšã€ãªã¢ã¹ã§ãã |
style |
'bold yellow' |
ã¢ãžã¥ãŒã«ã®ã¹ã¿ã€ã«ã§ãã |
expiration_symbol |
X |
ãã®èšå·ã¯äžæçãªè³æ Œæ å ±ãæå¹æéåãã®å Žåã«è¡šç€ºãããŸãã |
disabled |
false |
aws ã¢ãžã¥ãŒã«ãç¡å¹ã«ããŸãã |
force_display |
false |
true ã®å Žåãcredentials ãcredential_process ãŸãã¯sso_start_url ãèšå®ãããŠããªãå Žåã§ãæ
å ±ã衚瀺ããŸãã |
å€æ°
å€æ° | èšå®äŸ | 説æ |
---|---|---|
region | ap-northeast-1 |
çŸåšã®AWSãªãŒãžã§ã³ |
profile | astronauts |
çŸåšã®AWSãããã¡ã€ã« |
duration | 2h27m20s |
äžæçãªè³æ Œæ å ±ã®æå¹æé |
symbol | ãªãã·ã§ã³ symbol ã®å€ããã©ãŒãã |
|
style* | ãªãã·ã§ã³ style ã®å€ããã©ãŒãã |
*: ãã®å€æ°ã¯ãã¹ã¿ã€ã«æååã®äžéšãšããŠã®ã¿äœ¿çšããããšãã§ããŸãã
èšå®äŸ
ãã¹ãŠã衚瀺
# ~/.config/starship.toml
[aws]
format = 'on [$symbol($profile )(\($region\) )]($style)'
style = 'bold blue'
symbol = 'ð
° '
[aws.region_aliases]
ap-southeast-2 = 'au'
us-east-1 = 'va'
[aws.profile_aliases]
CompanyGroupFrobozzOnCallAccess = 'Frobozz'
ãªãŒãžã§ã³ã衚瀺
# ~/.config/starship.toml
[aws]
format = 'on [$symbol$region]($style) '
style = 'bold blue'
symbol = 'ð
° '
[aws.region_aliases]
ap-southeast-2 = 'au'
us-east-1 = 'va'
ãããã¡ã€ã«ã衚瀺
# ~/.config/starship.toml
[aws]
format = 'on [$symbol$profile]($style) '
style = 'bold blue'
symbol = 'ð
° '
[aws.profile_aliases]
Enterprise_Naming_Scheme-voidstars = 'void**'
Azure
azure
ã¢ãžã¥ãŒã«ã¯ãçŸåšã®Azureãµãã¹ã¯ãªãã·ã§ã³ã衚瀺ããŸãã ããã¯ã ~/.azure/azureProfile.json
ãã¡ã€ã«ã§å®çŸ©ãããŠããããã©ã«ãã®ãµãã¹ã¯ãªãã·ã§ã³åãŸãã¯ãŠãŒã¶ãŒåã®è¡šç€ºã«åºã¥ããŠããŸãã
ãªãã·ã§ã³
å€æ° | ããã©ã«ã | 説æ |
---|---|---|
format |
'on [$symbol($subscription)]($style) ' |
Azure module ã®ãã©ãŒãããã§ãã |
symbol |
'ïŽ ' |
ãã©ãŒãããã§äœ¿çšãããèšå·ã§ãã |
style |
'blue bold' |
ãã©ãŒãããã§äœ¿çšãããã¹ã¿ã€ã«ã§ãã |
disabled |
true |
azure ã¢ãžã¥ãŒã«ãç¡å¹ã«ããŸãã |
èšå®äŸ
ãµãã¹ã¯ãªãã·ã§ã³åã衚瀺
# ~/.config/starship.toml
[azure]
disabled = false
format = 'on [$symbol($subscription)]($style) '
symbol = 'ïŽ '
style = 'blue bold'
ãŠãŒã¶ãŒåã衚瀺
# ~/.config/starship.toml
[azure]
disabled = false
format = "on [$symbol($username)]($style) "
symbol = "ïŽ "
style = "blue bold"
ããããªãŒ
battery
ã¢ãžã¥ãŒã«ã¯ãããã€ã¹ã®ããããªãŒæ®éãšçŸåšã®å
é»ç¶æ
ã瀺ããŸãã ã¢ãžã¥ãŒã«ã¯ãããã€ã¹ã®ããããªãŒæ®éã10ïŒ
æªæºã®å Žåã«ã®ã¿è¡šç€ºãããŸãã
ãªãã·ã§ã³
ãªãã·ã§ã³ | ããã©ã«ã | 説æ |
---|---|---|
full_symbol |
'ïž ' |
ããããªãŒãæºã¿ã³ã®ãšãã«è¡šç€ºãããèšå·ã§ãã |
charging_symbol |
'ï ' |
ããããªãŒã®å é»äžã«è¡šç€ºãããèšå·ã§ãã |
discharging_symbol |
'ï ' |
ããããªãŒãæŸé»ããŠãããšãã«è¡šç€ºãããèšå·ã§ãã |
unknown_symbol |
'ïŒ ' |
ããããªãŒç¶æ ãäžæãªãšãã«è¡šç€ºãããèšå·ã§ãã |
empty_symbol |
'ï ' |
ããããªãŒã空ã®ãšãã«è¡šç€ºãããèšå·ã§ãã |
format |
'[$symbol$percentage]($style) ' |
module ã®ãã©ãŒãããã§ãã |
display |
link | ã¢ãžã¥ãŒã«ã®éŸå€ãšã¹ã¿ã€ã«ã衚瀺ããŸãã |
disabled |
false |
battery ã¢ãžã¥ãŒã«ãç¡å¹ã«ããŸãã |
èšå®äŸ
# ~/.config/starship.toml
[battery]
full_symbol = 'ð '
charging_symbol = 'â¡ïž '
discharging_symbol = 'ð '
ããããªãŒã®è¡šç€º
display
ãªãã·ã§ã³ã䜿çšããŠãããããªãŒã€ã³ãžã±ãŒã¿ãŒã衚瀺ããã¿ã€ãã³ã°ïŒthresholdïŒãã©ã®ã·ã³ãã«ã䜿ãããã(symbol) ãšå€èŠ³ïŒstyleïŒãå®çŸ©ããŸãã display
ãæäŸãããªãå Žåã ããã©ã«ãã¯æ¬¡ã®ãšããã§ãã
[[battery.display]]
threshold = 10
style = 'bold red'
charging_symbol
ãšdischarging_symbol
ãªãã·ã§ã³ã®ããã©ã«ãå€ã¯ããããbattery
ã® charging_symbol
ãšdischarging_symbol
ã«ãªããŸãã
ãªãã·ã§ã³
display
ãªãã·ã§ã³ã¯ã次ã®è¡šã®éãã§ãã
ãªãã·ã§ã³ | ããã©ã«ã | 説æ |
---|---|---|
threshold |
10 |
ããããªãŒã衚瀺ãããäžéã§ãã |
style |
'red bold' |
displayãªãã·ã§ã³ã䜿çšãããŠããå Žåã®ã¹ã¿ã€ã«ã§ãã |
charging_symbol |
displayãªãã·ã§ã³ã䜿çšãããŠããå Žåã¯ãã®ã®ã·ã³ãã«ã衚瀺ãããŸããããã©ã«ãã¯ããããªãŒã® charging_symbol ãªãã·ã§ã³ãšåãã«ãªããŸãã |
|
discharging_symbol |
displayãªãã·ã§ã³ã䜿çšãããŠããå Žåã¯ãã®ã®ã·ã³ãã«ã衚瀺ãããŸããããã©ã«ãã¯ããããªãŒã® discharging_symbol ãªãã·ã§ã³ãšåãã«ãªããŸãã |
èšå®äŸ
[[battery.display]] # 'bold red' style and discharging_symbol when capacity is between 0% and 10%
threshold = 10
style = 'bold red'
[[battery.display]] # 'bold yellow' style and ðŠ symbol when capacity is between 10% and 30%
threshold = 30
style = 'bold yellow'
discharging_symbol = 'ðŠ'
# when capacity is over 30%, the battery indicator will not be displayed
Buf
buf
ã¢ãžã¥ãŒã«ã¯ãçŸåšã€ã³ã¹ããŒã«ãããŠããBufã®ããŒãžã§ã³ã衚瀺ããŸãã ããã©ã«ãã§ã¯æ¬¡ã®ãã¹ãŠã®æ¡ä»¶ãæºãããããšãã¢ãžã¥ãŒã«ã衚瀺ãããŸãã
buf
CLI ãã€ã³ã¹ããŒã«ãããŠãã- ã«ã¬ã³ããã£ã¬ã¯ããªã«ã
buf.yaml
ãbuf.gen.yaml
ãŸãã¯buf.work.yaml
ãå«ãŸããŠãã
ãªãã·ã§ã³
ãªãã·ã§ã³ | ããã©ã«ã | 説æ |
---|---|---|
format |
'with [$symbol($version )]($style)' |
buf ã¢ãžã¥ãŒã«ã®åœ¢åŒã |
version_format |
'v${raw}' |
ããŒãžã§ã³ã®ãã©ãŒãããã |
symbol |
'ð ' |
Bufã®ããŒãžã§ã³ã衚瀺ããåã«äœ¿çšãããèšå·ã§ãã |
detect_extensions |
[] |
ã©ã®æ¡åŒµåããã®ã¢ãžã¥ãŒã«ãã¢ã¯ãã£ãã«ããã |
detect_files |
['buf.yaml', 'buf.gen.yaml', 'buf.work.yaml'] |
ã©ã®ãã¡ã€ã«åããã®ã¢ãžã¥ãŒã«ãã¢ã¯ãã£ãã«ããã |
detect_folders |
[] |
ã©ã®ãã©ã«ããŒããã®ã¢ãžã¥ãŒã«ãã¢ã¯ãã£ãã«ããã |
style |
'bold blue' |
ã¢ãžã¥ãŒã«ã®ã¹ã¿ã€ã«ã§ãã |
disabled |
false |
elixir ã¢ãžã¥ãŒã«ãç¡å¹ã«ããŸãã |
å€æ°
å€æ° | èšå®äŸ | 説æ |
---|---|---|
version |
v1.0.0 |
buf ã®ããŒãžã§ã³ |
symbol |
ãªãã·ã§ã³ symbol ã®å€ããã©ãŒãã |
|
style * |
ãªãã·ã§ã³ style ã®å€ããã©ãŒãã |
*: ãã®å€æ°ã¯ãã¹ã¿ã€ã«æååã®äžéšãšããŠã®ã¿äœ¿çšããããšãã§ããŸãã
èšå®äŸ
# ~/.config/starship.toml
[buf]
symbol = 'ðŠ¬ '
Bun
The bun
module shows the currently installed version of the bun JavaScript runtime. ããã©ã«ãã§ã¯æ¬¡ã®æ¡ä»¶ã®ãããããæºãããããšãã¢ãžã¥ãŒã«ã衚瀺ãããŸãã
- ã«ã¬ã³ããã£ã¬ã¯ããªã«
bun.lockb
ãã¡ã€ã«ãå«ãŸããŠãã - ã«ã¬ã³ããã£ã¬ã¯ããªã«
bunfig.toml
ãã¡ã€ã«ãå«ãŸããŠãã
ãªãã·ã§ã³
ãªãã·ã§ã³ | ããã©ã«ã | 説æ |
---|---|---|
format |
'via [$symbol($version )]($style)' |
module ã®ãã©ãŒãããã§ãã |
version_format |
'v${raw}' |
ããŒãžã§ã³ã®ãã©ãŒãããã 䜿çšå¯èœãªå€æ°ã¯raw ãmajor ãminor ãšpatch ã§ãã |
symbol |
'ð ' |
A format string representing the symbol of Bun. |
detect_extensions |
[] |
ã©ã®æ¡åŒµåããã®ã¢ãžã¥ãŒã«ãã¢ã¯ãã£ãã«ããã |
detect_files |
['bun.lockb', 'bunfig.toml'] |
ã©ã®ãã¡ã€ã«åããã®ã¢ãžã¥ãŒã«ãã¢ã¯ãã£ãã«ããã |
detect_folders |
[] |
ã©ã®ãã©ã«ããŒããã®ã¢ãžã¥ãŒã«ãã¢ã¯ãã£ãã«ããã |
style |
'bold red' |
ã¢ãžã¥ãŒã«ã®ã¹ã¿ã€ã«ã§ãã |
disabled |
false |
Disables the bun module. |
å€æ°
å€æ° | èšå®äŸ | 説æ |
---|---|---|
version | v0.1.4 |
The version of bun |
symbol | ãªãã·ã§ã³ symbol ã®å€ããã©ãŒãã |
|
style* | ãªãã·ã§ã³ style ã®å€ããã©ãŒãã |
*: ãã®å€æ°ã¯ãã¹ã¿ã€ã«æååã®äžéšãšããŠã®ã¿äœ¿çšããããšãã§ããŸãã
èšå®äŸ
# ~/.config/starship.toml
[bun]
format = 'via [ð $version](bold green) '
C
c
ã¢ãžã¥ãŒã«ã¯ãå©çšããŠããCã³ã³ãã€ã©ã«é¢ããããã€ãã®æ
å ±ã衚瀺ããŸãã ããã©ã«ãã§ã¯ãã«ã¬ã³ããã£ã¬ã¯ããªã«.c
ãŸãã¯.h
ãã¡ã€ã«ãå«ãŸããŠããå Žåãã¢ãžã¥ãŒã«ã衚瀺ãããŸãã
ãªãã·ã§ã³
ãªãã·ã§ã³ | ããã©ã«ã | 説æ |
---|---|---|
format |
'via [$symbol($version(-$name) )]($style)' |
ã¢ãžã¥ãŒã«ã®ãã©ãŒãããæååã |
version_format |
'v${raw}' |
ããŒãžã§ã³ã®ãã©ãŒãããã 䜿çšå¯èœãªå€æ°ã¯raw ãmajor ãminor ãšpatch ã§ãã |
symbol |
'C ' |
ã³ã³ãã€ã©ã®è©³çŽ°ã衚瀺ããåã«äœ¿çšãããèšå·ã§ãã |
detect_extensions |
['c', 'h'] |
ã©ã®æ¡åŒµåããã®ã¢ãžã¥ãŒã«ãã¢ã¯ãã£ãã«ããã |
detect_files |
[] |
ã©ã®ãã¡ã€ã«åããã®ã¢ãžã¥ãŒã«ãã¢ã¯ãã£ãã«ããã |
detect_folders |
[] |
ã©ã®ãã©ã«ããŒããã®ã¢ãžã¥ãŒã«ãã¢ã¯ãã£ãã«ããã |
commands |
[ [ 'cc', '--version' ], [ 'gcc', '--version' ], [ 'clang', '--version' ] ] | ã³ã³ãã€ã©ãæ€åºããæ¹æ³ |
style |
'bold 149' |
ã¢ãžã¥ãŒã«ã®ã¹ã¿ã€ã«ã§ãã |
disabled |
false |
c ã¢ãžã¥ãŒã«ãç¡å¹ã«ããŸãã |
å€æ°
å€æ° | èšå®äŸ | 説æ |
---|---|---|
name | clang | ã³ã³ãã€ã©å |
version | 13.0.0 | ã³ã³ãã€ã©ã®ããŒãžã§ã³ |
symbol | ãªãã·ã§ã³ symbol ã®å€ããã©ãŒãã |
|
style | ãªãã·ã§ã³ style ã®å€ããã©ãŒãã |
version
ã¯ããã©ã«ãã®ãã©ãŒãããã§ã¯ãªãããšã«æ³šæããŠãã ããã
Commands
commands
ãªãã·ã§ã³ã¯ãã³ã³ãã€ã©ã®ããŒãžã§ã³ãšååãå€å¥ããããã®ã³ãã³ãã®ãªã¹ããåãå
¥ããŸãã
Each command is represented as a list of the executable name, followed by its arguments, usually something like ['mycc', '--version']
. Starshipã¯STDOUTããçµæãåŸããããŸã§åã³ãã³ããå®è¡ãè©Šã¿ãŸãã
ãããCã³ã³ãã€ã©ããã®ã¢ãžã¥ãŒã«ã§ãµããŒããããŠããªãå Žåã¯ãGitHubã§åé¡ãæèµ·ããããšã§ãªã¯ãšã¹ãã§ããŸãã
èšå®äŸ
# ~/.config/starship.toml
[c]
format = 'via [$name $version]($style)'
Character
character
ã¢ãžã¥ãŒã«ã¯ã端æ«ã§ããã¹ããå
¥åãããå Žæã®æšªã«æåïŒéåžžã¯ç¢å°ïŒã衚瀺ããŸãã
characterã¯ãæåŸã®ã³ãã³ããæåãããã©ããã瀺ããŸãã è¡šãæ¹ã¯äžèšã®2ã€ã§ãã
- è²ã®å€æŽ (
èµ€
/ç·
) - ããã³ããã®è¡šç€ºã®å€æŽ (
â¯
/â
)
ããã©ã«ãã§ã¯ãè²ã ããå€æŽãããŸãã 圢ãå€ããŠã¿ããå Žåã¯ãã®ãµã³ãã«ãåèã«ããŠãã ããã
::: warning
vimcmd_symbol
ã¯cmd, fish and zshã§ã®ã¿ãµããŒããããŠããŸãã vimcmd_replace_one_symbol
ãvimcmd_replace_symbol
ãšvimcmd_visual_symbol
ã¯ãzshã§ã®ã¢ãŒãæ€åºã«ããåé¡ã®ãããfishã§ã®ã¿ãµããŒããããŠããŸãã
:::
ãªãã·ã§ã³
ãªãã·ã§ã³ | ããã©ã«ã | 説æ |
---|---|---|
format |
'$symbol ' |
ããã¹ãå ¥åã®åã«äœ¿çšããããã©ãŒãããæååã |
success_symbol |
'[â¯](bold green)' |
åã®ã³ãã³ããæåããå Žåã«ããã¹ãå ¥åã®åã«äœ¿çšããããã©ãŒãããæååã§ãã |
error_symbol |
'[â¯](bold red)' |
åã®ã³ãã³ãã倱æããå Žåã«ããã¹ãå ¥åã®åã«äœ¿çšããããã©ãŒãããæååã§ãã |
vimcmd_symbol |
'[â®](bold green)' |
ã·ã§ã«ãvimããŒãã«ã¢ãŒãã®å Žåã«ããã¹ãå ¥åã®åã«äœ¿çšããããã©ãŒãããæååã§ãã |
vimcmd_replace_one_symbol |
'[â®](bold purple)' |
ã·ã§ã«ãvimã®replace_one ã¢ãŒãã®å Žåã«ããã¹ãå
¥åã®åã«äœ¿çšããããã©ãŒãããæååã§ãã |
vimcmd_replace_symbol |
'[â®](bold purple)' |
ã·ã§ã«ãvimã®çœ®æã¢ãŒãã®å Žåã«ããã¹ãå ¥åã®åã«äœ¿çšããããã©ãŒãããæååã |
vimcmd_visual_symbol |
'[â®](bold yellow)' |
The format string used before the text input if the shell is in vim visual mode. |
disabled |
false |
character ã¢ãžã¥ãŒã«ãç¡å¹ã«ããŸãã |
å€æ°
å€æ° | èšå®äŸ | 説æ |
---|---|---|
symbol | A mirror of either success_symbol , error_symbol , vimcmd_symbol or vimcmd_replace_one_symbol etc. |
èšå®äŸ
ãšã©ãŒã®åœ¢ç¶ãã«ã¹ã¿ã ãã
# ~/.config/starship.toml
[character]
success_symbol = '[â](bold green) '
error_symbol = '[â](bold red) '
ãšã©ãŒã®åœ¢ç¶ãã«ã¹ã¿ã ããªã
# ~/.config/starship.toml
[character]
success_symbol = '[â](bold green) '
error_symbol = '[â](bold red) '
vimã®åœ¢ç¶ãã«ã¹ã¿ã ãã
# ~/.config/starship.toml
[character]
vicmd_symbol = '[V](bold green) '
CMake
cmake
ã¢ãžã¥ãŒã«ã¯ãçŸåšã€ã³ã¹ããŒã«ãããŠããCmakeã®ããŒãžã§ã³ã衚瀺ããŸãã ããã©ã«ãã§ã¯æ¬¡ã®ããããã®æ¡ä»¶ãæºãããããšãã¢ãžã¥ãŒã«ãã¢ã¯ãã£ãã«ãªããŸãã
- ã«ã¬ã³ããã£ã¬ã¯ããªã«
CMakeLists.txt
ãã¡ã€ã«ãå«ãŸããŠãã - ã«ã¬ã³ããã£ã¬ã¯ããªã«
CMakeCache.txt
ãã¡ã€ã«ãå«ãŸããŠãã
ãªãã·ã§ã³
ãªãã·ã§ã³ | ããã©ã«ã | 説æ |
---|---|---|
format |
'via [$symbol($version )]($style)' |
module ã®ãã©ãŒãããã§ãã |
version_format |
'v${raw}' |
ããŒãžã§ã³ã®ãã©ãŒãããã 䜿çšå¯èœãªå€æ°ã¯raw ãmajor ãminor ãšpatch ã§ãã |
symbol |
'â³ ' |
cmakeã®ããŒãžã§ã³ã®åã«äœ¿çšãããèšå· |
detect_extensions |
[] |
ã©ã®æ¡åŒµåããã®ã¢ãžã¥ãŒã«ãã¢ã¯ãã£ãã«ããã |
detect_files |
['CMakeLists.txt', 'CMakeCache.txt'] |
ã©ã®ãã¡ã€ã«åããã®ã¢ãžã¥ãŒã«ãã¢ã¯ãã£ãã«ããã |
detect_folders |
[] |
ã©ã®ãã©ã«ããŒããã®ã¢ãžã¥ãŒã«ãã¢ã¯ãã£ãã«ããã |
style |
'bold blue' |
ã¢ãžã¥ãŒã«ã®ã¹ã¿ã€ã«ã§ãã |
disabled |
false |
cmake ã¢ãžã¥ãŒã«ãç¡å¹ã«ããŸãã |
å€æ°
å€æ° | èšå®äŸ | 説æ |
---|---|---|
version | v3.17.3 |
cmake ã®ããŒãžã§ã³ |
symbol | ãªãã·ã§ã³ symbol ã®å€ããã©ãŒãã |
|
style* | ãªãã·ã§ã³ style ã®å€ããã©ãŒãã |
*: ãã®å€æ°ã¯ãã¹ã¿ã€ã«æååã®äžéšãšããŠã®ã¿äœ¿çšããããšãã§ããŸãã
COBOL / GNUCOBOL
COBOL
ã¢ãžã¥ãŒã«ã¯ãçŸåšã€ã³ã¹ããŒã«ãããŠããCOBOLã®ããŒãžã§ã³ã衚瀺ããŸãã ããã©ã«ãã§ã¯æ¬¡ã®æ¡ä»¶ã®ãããããæºãããããšãã¢ãžã¥ãŒã«ã衚瀺ãããŸãã
- ã«ã¬ã³ããã£ã¬ã¯ããªã«ã
.cob
ãŸãã¯.COB
ã®æ¡åŒµåã®ãã¡ã€ã«ãå«ãŸããŠãã - ã«ã¬ã³ããã£ã¬ã¯ããªã«ã
.cbl
ãŸãã¯.CBL
ã®æ¡åŒµåã®ãã¡ã€ã«ãå«ãŸããŠãã
ãªãã·ã§ã³
ãªãã·ã§ã³ | ããã©ã«ã | 説æ |
---|---|---|
symbol |
'âïž ' |
COBOLã®ããŒãžã§ã³ã衚瀺ããåã«äœ¿çšãããèšå·ã§ãã |
format |
'via [$symbol($version )]($style)' |
module ã®ãã©ãŒãããã§ãã |
version_format |
'v${raw}' |
ããŒãžã§ã³ã®ãã©ãŒãããã 䜿çšå¯èœãªå€æ°ã¯raw ãmajor ãminor ãšpatch ã§ãã |
style |
'bold blue' |
ã¢ãžã¥ãŒã«ã®ã¹ã¿ã€ã«ã§ãã |
detect_extensions |
['cbl', 'cob', 'CBL', 'COB'] |
ã©ã®æ¡åŒµåããã®ã¢ãžã¥ãŒã«ãã¢ã¯ãã£ãã«ããã |
detect_files |
[] |
ã©ã®ãã¡ã€ã«åããã®ã¢ãžã¥ãŒã«ãã¢ã¯ãã£ãã«ããã |
detect_folders |
[] |
ã©ã®ãã©ã«ããŒããã®ã¢ãžã¥ãŒã«ãã¢ã¯ãã£ãã«ããã |
disabled |
false |
cobol ã¢ãžã¥ãŒã«ãç¡å¹ã«ããŸãã |
å€æ°
å€æ° | èšå®äŸ | 説æ |
---|---|---|
version | v3.1.2.0 |
cobol ã®ããŒãžã§ã³ |
symbol | ãªãã·ã§ã³ symbol ã®å€ããã©ãŒãã |
|
style* | ãªãã·ã§ã³ style ã®å€ããã©ãŒãã |
*: ãã®å€æ°ã¯ãã¹ã¿ã€ã«æååã®äžéšãšããŠã®ã¿äœ¿çšããããšãã§ããŸãã
Command Duration
cmd_duration
ã¢ãžã¥ãŒã«ã¯ãæåŸã®ã³ãã³ãã®å®è¡ã«ããã£ãæéã瀺ããŸãã ã¢ãžã¥ãŒã«ã衚瀺ãããã®ã¯ãã³ãã³ãã2ç§ä»¥äžããã£ãå ŽåããŸãã¯min_time
å€ãååšããå Žåã®ã¿ã§ãã
::: warning Bashã§DEBUGãã©ãããhookããªã
bash
ã§Starshipãå®è¡ããŠããå Žåã eval $(starship init $0)
å®è¡ããåŸã«DEBUG
ãã©ãããããã¯ããªãã§ãã ãããããããªããšããã®ã¢ãžã¥ãŒã«ãããããã§ããå£ããŸãã
:::
preexecã®ãããªæ©èœãå¿
èŠãšããBashãŠãŒã¶ãŒã¯ã rcalorasã®bash_preexecãã¬ãŒã ã¯ãŒã¯ã䜿çšã§ããŸãã eval $(starship init $0)
ãå®è¡ããåã«ãpreexec_functions
ãããã³precmd_functions
å®çŸ©ããã ãã§ãéåžžã©ããç¶è¡ããŸãã
ãªãã·ã§ã³
ãªãã·ã§ã³ | ããã©ã«ã | 説æ |
---|---|---|
min_time |
2_000 |
å®è¡æéã衚瀺ããæçæéïŒããªç§åäœïŒã§ãã |
show_milliseconds |
false |
å®è¡æéã®ç§ã«å ããŠããªç§ã衚瀺ããŸãã |
format |
'took [$duration]($style) ' |
module ã®ãã©ãŒãããã§ãã |
style |
'bold yellow' |
ã¢ãžã¥ãŒã«ã®ã¹ã¿ã€ã«ã§ãã |
disabled |
false |
cmd_duration ã¢ãžã¥ãŒã«ãç¡å¹ã«ããŸãã |
show_notifications |
false |
ã³ãã³ããå®äºããããã¹ã¯ãããéç¥ã衚瀺ããŸãã |
min_time_to_notify |
45_000 |
éç¥ãæç¶ããæçæé (ããªç§åäœ) ã§ãã |
notification_timeout |
éç¥ã衚瀺ããæé (ããªç§åäœ) ã§ãã ããèšå®ãããŠããªãå Žåãéç¥ã®ã¿ã€ã ã¢ãŠãã¯ããŒã¢ã³ã«ãã£ãŠæ±ºå®ãããŸãã ãã¹ãŠã®éç¥ããŒã¢ã³ããã®ãªãã·ã§ã³ãåãå ¥ããããã§ã¯ãããŸããã |
å€æ°
å€æ° | èšå®äŸ | 説æ |
---|---|---|
duration | 16m40s |
ã³ãã³ãã®å®è¡æé |
style* | ãªãã·ã§ã³ style ã®å€ããã©ãŒãã |
*: ãã®å€æ°ã¯ãã¹ã¿ã€ã«æååã®äžéšãšããŠã®ã¿äœ¿çšããããšãã§ããŸãã
èšå®äŸ
# ~/.config/starship.toml
[cmd_duration]
min_time = 500
format = 'underwent [$duration](bold yellow)'
Conda
conda
ã¢ãžã¥ãŒã«ã¯ã$CONDA_DEFAULT_ENV
ãèšå®ãããŠããå ŽåãçŸåšã®Conda ç°å¢ã衚瀺ããŸãã
::: tip
Note: ããã¯condaèªèº«ã® ããã³ãã修食å ãæå¶ããŸãããconda config --set changeps1 False
ã§å®è¡ããããšãã§ããŸãã
:::
ãªãã·ã§ã³
ãªãã·ã§ã³ | ããã©ã«ã | 説æ |
---|---|---|
truncation_length |
1 |
ç°å¢ãconda create -p [path] ã§äœæãããå Žåãç°å¢ãã¹ãåãæšãŠããããã£ã¬ã¯ããªæ°ã 0 ã¯åãæšãŠããªãããšãæå³ããŸãã directory ãã芧ãã ããã |
symbol |
'ð
' |
ç°å¢åã®çŽåã«äœ¿çšãããã·ã³ãã«ã§ãã |
style |
'bold green' |
ã¢ãžã¥ãŒã«ã®ã¹ã¿ã€ã«ã§ãã |
format |
'via [$symbol$environment]($style) ' |
module ã®ãã©ãŒãããã§ãã |
ignore_base |
true |
ã¢ã¯ãã£ãã«ãªã£ãæãç°å¢base ãç¡èŠããŸãã |
disabled |
false |
conda ã¢ãžã¥ãŒã«ãç¡å¹ã«ããŸãã |
å€æ°
å€æ° | èšå®äŸ | 説æ |
---|---|---|
environment | astronauts |
çŸåšã® conda ç°å¢ |
symbol | ãªãã·ã§ã³ symbol ã®å€ããã©ãŒãã |
|
style* | ãªãã·ã§ã³ style ã®å€ããã©ãŒãã |
*: ãã®å€æ°ã¯ãã¹ã¿ã€ã«æååã®äžéšãšããŠã®ã¿äœ¿çšããããšãã§ããŸãã
èšå®äŸ
# ~/.config/starship.toml
[conda]
format = '[$symbol$environment](dimmed green) '
ã³ã³ãã
container
ã¢ãžã¥ãŒã«ã¯ãã³ã³ããå
ã®å Žåãã·ã³ãã«ãšã³ã³ããåã衚瀺ããŸãã
ãªãã·ã§ã³
ãªãã·ã§ã³ | ããã©ã«ã | 説æ |
---|---|---|
symbol |
'⬢' |
ã³ã³ããå ã«ããå Žåããã®ã·ã³ãã«ã衚瀺ãããŸãã |
style |
'bold red dimmed' |
ã¢ãžã¥ãŒã«ã®ã¹ã¿ã€ã«ã§ãã |
format |
'[$symbol \[$name\]]($style) ' |
module ã®ãã©ãŒãããã§ãã |
disabled |
false |
container ã¢ãžã¥ãŒã«ãç¡å¹ã«ããŸãã |
å€æ°
å€æ° | èšå®äŸ | 説æ |
---|---|---|
name | fedora-toolbox:35 |
ã³ã³ããå |
symbol | ãªãã·ã§ã³ symbol ã®å€ããã©ãŒãã |
|
style* | ãªãã·ã§ã³ style ã®å€ããã©ãŒãã |
*: ãã®å€æ°ã¯ãã¹ã¿ã€ã«æååã®äžéšãšããŠã®ã¿äœ¿çšããããšãã§ããŸãã
èšå®äŸ
# ~/.config/starship.toml
[container]
format = '[$symbol \[$name\]]($style) '
Crystal
crystal
ã¢ãžã¥ãŒã«ã¯ãçŸåšã€ã³ã¹ããŒã«ãããŠããCrystalã®ããŒãžã§ã³ã衚瀺ããŸãã ããã©ã«ãã§ã¯æ¬¡ã®æ¡ä»¶ã®ãããããæºãããããšãã¢ãžã¥ãŒã«ã衚瀺ãããŸãã
- ã«ã¬ã³ããã£ã¬ã¯ããªã«
shard.yml
ãã¡ã€ã«ãå«ãŸããŠãã - ã«ã¬ã³ããã£ã¬ã¯ããªã«
.cr
ã®æ¡åŒµåã®ãã¡ã€ã«ãå«ãŸããŠãã
ãªãã·ã§ã³
ãªãã·ã§ã³ | ããã©ã«ã | 説æ |
---|---|---|
symbol |
'ð® ' |
Crystalã®ããŒãžã§ã³ã衚瀺ããåã«äœ¿çšãããèšå·ã§ãã |
format |
'via [$symbol($version )]($style)' |
module ã®ãã©ãŒãããã§ãã |
version_format |
'v${raw}' |
ããŒãžã§ã³ã®ãã©ãŒãããã 䜿çšå¯èœãªå€æ°ã¯raw ãmajor ãminor ãšpatch ã§ãã |
style |
'bold red' |
ã¢ãžã¥ãŒã«ã®ã¹ã¿ã€ã«ã§ãã |
detect_extensions |
['cr'] |
ã©ã®æ¡åŒµåããã®ã¢ãžã¥ãŒã«ãã¢ã¯ãã£ãã«ããã |
detect_files |
['shard.yml'] |
ã©ã®ãã¡ã€ã«åããã®ã¢ãžã¥ãŒã«ãã¢ã¯ãã£ãã«ããã |
detect_folders |
[] |
ã©ã®ãã©ã«ããŒããã®ã¢ãžã¥ãŒã«ãã¢ã¯ãã£ãã«ããã |
disabled |
false |
crystal ã¢ãžã¥ãŒã«ãç¡å¹ã«ããŸãã |
å€æ°
å€æ° | èšå®äŸ | 説æ |
---|---|---|
version | v0.32.1 |
crystal ã®ããŒãžã§ã³ |
symbol | ãªãã·ã§ã³ symbol ã®å€ããã©ãŒãã |
|
style* | ãªãã·ã§ã³ style ã®å€ããã©ãŒãã |
*: ãã®å€æ°ã¯ãã¹ã¿ã€ã«æååã®äžéšãšããŠã®ã¿äœ¿çšããããšãã§ããŸãã
èšå®äŸ
# ~/.config/starship.toml
[crystal]
format = 'via [âš $version](bold blue) '
Daml
daml
ã¢ãžã¥ãŒã«ã¯ãDamlãããžã§ã¯ãã®ã«ãŒããã£ã¬ã¯ããªã«ãããšãã«ã䜿çšããŠããDaml SDKããŒãžã§ã³ã衚瀺ããŸãã ç°å¢å€æ°DAML_SDK_VERSION
ãäžæžãããªãéããdaml.yaml
ãã¡ã€ã«ã®sdk-version
ã䜿çšãããŸãã ããã©ã«ãã§ã¯æ¬¡ã®æ¡ä»¶ã®ãããããæºãããããšãã¢ãžã¥ãŒã«ã衚瀺ãããŸãã
- ã«ã¬ã³ããã£ã¬ã¯ããªã«
daml.yaml
ãã¡ã€ã«ãå«ãŸããŠãã
ãªãã·ã§ã³
ãªãã·ã§ã³ | ããã©ã«ã | 説æ |
---|---|---|
format |
'via [$symbol($version )]($style)' |
module ã®ãã©ãŒãããã§ãã |
version_format |
'v${raw}' |
ããŒãžã§ã³ã®ãã©ãŒãããã 䜿çšå¯èœãªå€æ°ã¯raw ãmajor ãminor ãšpatch ã§ãã |
symbol |
'Î ' |
Damlã®èšå·ãè¡šããã©ãŒãããæååã§ãã |
style |
'bold cyan' |
ã¢ãžã¥ãŒã«ã®ã¹ã¿ã€ã«ã§ãã |
detect_extensions |
[] |
ã©ã®æ¡åŒµåããã®ã¢ãžã¥ãŒã«ãã¢ã¯ãã£ãã«ããã |
detect_files |
['daml.yaml'] |
ã©ã®ãã¡ã€ã«åããã®ã¢ãžã¥ãŒã«ãã¢ã¯ãã£ãã«ããã |
detect_folders |
[] |
ã©ã®ãã©ã«ããŒããã®ã¢ãžã¥ãŒã«ãã¢ã¯ãã£ãã«ããã |
disabled |
false |
daml ã¢ãžã¥ãŒã«ãç¡å¹ã«ããŸãã |
å€æ°
å€æ° | èšå®äŸ | 説æ |
---|---|---|
version | v2.2.0 |
daml ã®ããŒãžã§ã³ |
symbol | ãªãã·ã§ã³ symbol ã®å€ããã©ãŒãã |
|
style* | ãªãã·ã§ã³ style ã®å€ããã©ãŒãã |
*: ãã®å€æ°ã¯ãã¹ã¿ã€ã«æååã®äžéšãšããŠã®ã¿äœ¿çšããããšãã§ããŸãã
èšå®äŸ
# ~/.config/starship.toml
[daml]
format = 'via [D $version](bold bright-green) '
Dart
dart
ã¢ãžã¥ãŒã«ã¯ãçŸåšã€ã³ã¹ããŒã«ãããŠããDartã®ããŒãžã§ã³ã衚瀺ããŸãã ããã©ã«ãã§ã¯æ¬¡ã®æ¡ä»¶ã®ãããããæºãããããšãã¢ãžã¥ãŒã«ã衚瀺ãããŸãã
- ã«ã¬ã³ããã£ã¬ã¯ããªã«
.dart
ã®æ¡åŒµåã®ãã¡ã€ã«ãå«ãŸããŠãã - ã«ã¬ã³ããã£ã¬ã¯ããªã«
.dart_tool
ãã£ã¬ã¯ããªãå«ãŸããŠãã - ã«ã¬ã³ããã£ã¬ã¯ããªã«
pubspec.yaml
ãpubspec.yml
ãŸãã¯pubspec.lock
ãå«ãŸããŠãã
ãªãã·ã§ã³
ãªãã·ã§ã³ | ããã©ã«ã | 説æ |
---|---|---|
format |
'via [$symbol($version )]($style)' |
module ã®ãã©ãŒãããã§ãã |
version_format |
'v${raw}' |
ããŒãžã§ã³ã®ãã©ãŒãããã 䜿çšå¯èœãªå€æ°ã¯raw ãmajor ãminor ãšpatch ã§ãã |
symbol |
'ð¯ ' |
Dartã®ã·ã³ãã«ãè¡šããã©ãŒãããæåå |
detect_extensions |
['dart'] |
ã©ã®æ¡åŒµåããã®ã¢ãžã¥ãŒã«ãã¢ã¯ãã£ãã«ããã |
detect_files |
['pubspec.yaml', 'pubspec.yml', 'pubspec.lock'] |
ã©ã®ãã¡ã€ã«åããã®ã¢ãžã¥ãŒã«ãã¢ã¯ãã£ãã«ããã |
detect_folders |
['.dart_tool'] |
ã©ã®ãã©ã«ããŒããã®ã¢ãžã¥ãŒã«ãã¢ã¯ãã£ãã«ããã |
style |
'bold blue' |
ã¢ãžã¥ãŒã«ã®ã¹ã¿ã€ã«ã§ãã |
disabled |
false |
dart ã¢ãžã¥ãŒã«ãç¡å¹ã«ããŸãã |
å€æ°
å€æ° | èšå®äŸ | 説æ |
---|---|---|
version | v2.8.4 |
dart ã®ããŒãžã§ã³ |
symbol | ãªãã·ã§ã³ symbol ã®å€ããã©ãŒãã |
|
style* | ãªãã·ã§ã³ style ã®å€ããã©ãŒãã |
*: ãã®å€æ°ã¯ãã¹ã¿ã€ã«æååã®äžéšãšããŠã®ã¿äœ¿çšããããšãã§ããŸãã
èšå®äŸ
# ~/.config/starship.toml
[dart]
format = 'via [ð° $version](bold red) '
Deno
deno
ã¢ãžã¥ãŒã«ã¯ãçŸåšã€ã³ã¹ããŒã«ãããŠããDenoã®ããŒãžã§ã³ã衚瀺ããŸãã ããã©ã«ãã§ã¯æ¬¡ã®æ¡ä»¶ã®ãããããæºãããããšãã¢ãžã¥ãŒã«ã衚瀺ãããŸãã
- ã«ã¬ã³ããã£ã¬ã¯ããªã«
deno.json
ãdeno.jsonc
ãmod.ts
ãmod.js
ãdeps.ts
ãããã¯deps.js
ãå«ãŸããŠãã
ãªãã·ã§ã³
ãªãã·ã§ã³ | ããã©ã«ã | 説æ |
---|---|---|
format |
'via [$symbol($version )]($style)' |
module ã®ãã©ãŒãããã§ãã |
version_format |
'v${raw}' |
ããŒãžã§ã³ã®ãã©ãŒãããã 䜿çšå¯èœãªå€æ°ã¯raw ãmajor ãminor ãšpatch ã§ãã |
symbol |
'ðŠ ' |
Dart ã®ã·ã³ãã«ãè¡šããã©ãŒãããæåå |
detect_extensions |
[] |
ã©ã®æ¡åŒµåããã®ã¢ãžã¥ãŒã«ãã¢ã¯ãã£ãã«ããã |
detect_files |
['deno.json', 'deno.jsonc', 'mod.ts', 'mod.js', 'deps.ts', 'deps.js'] |
ã©ã®ãã¡ã€ã«åããã®ã¢ãžã¥ãŒã«ãã¢ã¯ãã£ãã«ããã |
detect_folders |
[] |
ã©ã®ãã©ã«ããŒããã®ã¢ãžã¥ãŒã«ãã¢ã¯ãã£ãã«ããã |
style |
'green bold' |
ã¢ãžã¥ãŒã«ã®ã¹ã¿ã€ã«ã§ãã |
disabled |
false |
deno ã¢ãžã¥ãŒã«ãç¡å¹åããŸãã |
å€æ°
å€æ° | èšå®äŸ | 説æ |
---|---|---|
version | v1.8.3 |
deno ã®ããŒãžã§ã³ |
symbol | ãªãã·ã§ã³ symbol ã®å€ããã©ãŒãã |
|
style* | ãªãã·ã§ã³ style ã®å€ããã©ãŒãã |
èšå®äŸ
# ~/.config/starship.toml
[deno]
format = 'via [ðŠ $version](green bold) '
Directory
directory
ã¢ãžã¥ãŒã«ã¯çŸåšã®ãã£ã¬ã¯ããªãžã®ãã¹ã衚瀺ããŸãã芪ãã©ã«ãã¯3ã€ãŸã§ã«åãæšãŠãããŸãã git ãªããžããªå
ã«ããå Žåã¯ããªããžããªã®ã«ãŒãã§åãæšãŠãããŸãã
fish ã¹ã¿ã€ã«ã® pwd ãªãã·ã§ã³ã䜿çšããŠããå ŽåãåãæšãŠããããã¹ãé衚瀺ã«ãã代ããã«ããªãã·ã§ã³ã§æå¹ã«ããæ°å€ã«åºã¥ããåãã£ã¬ã¯ããªã®ççž®åã衚瀺ãããŸãã
ããšãã°ã~/Dev/Nix/nixpkgs/pkgs
ã§ãnixpkgs
ããªããžããªã«ãŒãã§ããããªãã·ã§ã³ã 1
ã«èšå®ãããŠããå ŽåãæããŸãã ãã®å Žåãnixpkgs/pkgs
ã®ä»£ããã«ã~/D/N/nixpkgs/pkgs
ãšè¡šç€ºãããŸãã
ãªãã·ã§ã³
ãªãã·ã§ã³ | ããã©ã«ã | 説æ |
---|---|---|
truncation_length |
3 |
çŸåšã®ãã£ã¬ã¯ããªãåãæšãŠã芪ãã©ã«ããŒã®æ°ã§ãã |
truncate_to_repo |
true |
çŸåšããgitãªããžããªã®ã«ãŒãã«åãæšãŠããã©ããã§ãã |
format |
'[$path]($style)[$read_only]($read_only_style) ' |
module ã®ãã©ãŒãããã§ãã |
style |
'bold cyan' |
ã¢ãžã¥ãŒã«ã®ã¹ã¿ã€ã«ã§ãã |
disabled |
false |
directory ã¢ãžã¥ãŒã«ãç¡å¹ã«ããŸãã |
read_only |
'ð' |
ãã®ã·ã³ãã«ã衚瀺ãããŠããæãçŸåšã®ãã£ã¬ã¯ããªã¯èªã¿åãå°çšã§ãã |
read_only_style |
'red' |
èªã¿åãå°çšã·ã³ãã«ã®ã¹ã¿ã€ã«ã§ãã |
truncation_symbol |
'' |
åãæšãŠããããã¹ã®æ¥é èŸãšããŠä»ããã·ã³ãã«ã§ãã eg: 'âŠ/' |
before_repo_root_style |
The style for the path segment above the root of the git repo. ããã©ã«ãã®å€ã¯ style ãšåãã§ãã |
|
repo_root_style |
gitãªããžããªã®ã«ãŒãã®ã¹ã¿ã€ã«ã§ãã ããã©ã«ãã®å€ã¯ style ãšåãã§ãã |
|
repo_root_format |
'[$before_root_path]($before_repo_root_style)[$repo_root]($repo_root_style)[$path]($style)[$read_only]($read_only_style) ' |
The format of a git repo when before_repo_root_style and repo_root_style is defined. |
home_symbol |
'~' |
ããŒã ãã£ã¬ã¯ããªã瀺ãã·ã³ãã«ã§ãã |
use_os_path_sep |
true |
/ ã䜿çšãã代ããã«ãOSåºæã®ãã¹ã®åºåãæåã䜿çšããŸãã(äŸ: Windowsã®å Žå\ ) |
ãã®ã¢ãžã¥ãŒã«ã¯ãã©ã®ããã«ãã£ã¬ã¯ããªã衚瀺ãããã«ã€ããŠã®é«åºŠãªãªãã·ã§ã³ãããã€ãæã£ãŠããŸãã
Advanced Option | ããã©ã«ã | 説æ |
---|---|---|
substitutions |
A table of substitutions to be made to the path. | |
fish_style_pwd_dir_length |
0 |
fish shellã®pwdãã¹ããžãã¯ãé©çšãããšãã«äœ¿çšããæåæ°ã§ãã |
use_logical_path |
true |
If true render the logical path sourced from the shell via PWD or --logical-path . If false instead render the physical filesystem path with symlinks resolved. |
substitutions
allows you to define arbitrary replacements for literal strings that occur in the path, for example long network prefixes or development directories (i.e. Java). Note that this will disable the fish style PWD.
[directory.substitutions]
'/Volumes/network/path' = '/net'
'src/com/long/java/path' = 'mypath'
fish_style_pwd_dir_length
interacts with the standard truncation options in a way that can be surprising at first: if it's non-zero, the components of the path that would normally be truncated are instead displayed with that many characters. For example, the path /built/this/city/on/rock/and/roll
, which would normally be displayed as as rock/and/roll
, would be displayed as /b/t/c/o/rock/and/roll
with fish_style_pwd_dir_length = 1
--the path components that would normally be removed are displayed with a single character. For fish_style_pwd_dir_length = 2
, it would be /bu/th/ci/on/rock/and/roll
.
å€æ°
å€æ° | èšå®äŸ | 説æ |
---|---|---|
path | 'D:/Projects' |
ã«ã¬ã³ããã£ã¬ã¯ããªã®ãã¹ |
style* | 'black bold dimmed' |
ãªãã·ã§ã³ style ã®å€ããã©ãŒãã |
*: ãã®å€æ°ã¯ãã¹ã¿ã€ã«æååã®äžéšãšããŠã®ã¿äœ¿çšããããšãã§ããŸãã
gitãªããžããªã¯è¿œå ã®å€æ°ããããŸãã
/path/to/home/git_repo/src/lib
ã®ãã¹ã«ã€ããŠèããŸãã
å€æ° | èšå®äŸ | 説æ |
---|---|---|
before_root_path | '/path/to/home/' |
gitã«ãŒããã£ã¬ã¯ããªãã¹ã®åã®ãã¹ |
repo_root | 'git_repo' |
gitã«ãŒããã£ã¬ã¯ããªã®åå |
path | '/src/lib' |
æ®ãã®ãã¹ |
style | 'black bold dimmed' |
ãªãã·ã§ã³ style ã®å€ããã©ãŒãã |
repo_root_style | 'underline white' |
gitã«ãŒããã£ã¬ã¯ããªã®ååã®ã¹ã¿ã€ã« |
èšå®äŸ
# ~/.config/starship.toml
[directory]
truncation_length = 8
truncation_symbol = 'âŠ/'
Docker Context
docker_context
ã¢ãžã¥ãŒã«ã¯ãdefault
ã«èšå®ãããŠããªãå ŽåããŸãã¯ç°å¢å€æ°DOCKER_MACHINE_NAME
ãDOCKER_HOST
ãŸãã¯DOCKER_CONTEXT
ãèšå®ãããŠããå Žå (䜿çšäžã®ã³ã³ããã¹ããäžæžããããã)ãçŸåšã¢ã¯ãã£ããªDocker contextã衚瀺ããŸãã
ãªãã·ã§ã³
ãªãã·ã§ã³ | ããã©ã«ã | 説æ |
---|---|---|
format |
'via [$symbol$context]($style) ' |
module ã®ãã©ãŒãããã§ãã |
symbol |
'ð³ ' |
Dockerã³ã³ããã¹ãã衚瀺ããåã«äœ¿çšãããèšå·ã§ãã |
only_with_files |
true |
ãã¡ã€ã«ã«äžèŽããå Žåã«ã®ã¿è¡šç€º |
detect_extensions |
[] |
ã©ã®æ¡åŒµåããã®ã¢ãžã¥ãŒã«ãããªã¬ãŒããã(only_with_files ãtrueã«ãªã£ãŠããå¿
èŠããããŸã)ã |
detect_files |
['docker-compose.yml', 'docker-compose.yaml', 'Dockerfile'] |
ã©ããªãã¡ã€ã«åããã®ã¢ãžã¥ãŒã«ãããªã¬ãŒããã(only_with_files ãtrueã«ãªã£ãŠããå¿
èŠããããŸã)ã |
detect_folders |
[] |
ã©ããªãã©ã«ãããã®ã¢ãžã¥ãŒã«ãããªã¬ãŒããã(only_with_files ãtrueã«ãªã£ãŠããå¿
èŠããããŸã)ã |
style |
'blue bold' |
ã¢ãžã¥ãŒã«ã®ã¹ã¿ã€ã«ã§ãã |
disabled |
false |
docker_context ã¢ãžã¥ãŒã«ãç¡å¹ã«ããŸãã |
å€æ°
å€æ° | èšå®äŸ | 説æ |
---|---|---|
context | test_context |
çŸåšã® Docker ã³ã³ããã¹ã |
symbol | ãªãã·ã§ã³ symbol ã®å€ããã©ãŒãã |
|
style* | ãªãã·ã§ã³ style ã®å€ããã©ãŒãã |
*: ãã®å€æ°ã¯ãã¹ã¿ã€ã«æååã®äžéšãšããŠã®ã¿äœ¿çšããããšãã§ããŸãã
èšå®äŸ
# ~/.config/starship.toml
[docker_context]
format = 'via [ð $context](blue bold)'
Dotnet
dotnet
ã¢ãžã¥ãŒã«ã¯ã«ã¬ã³ããã£ã¬ã¯ããªã«é¢ä¿ãã.NET Core SDKã®ããŒãžã§ã³ã衚瀺ããŸãã ãã SDKã¯çŸåšã®ãã£ã¬ã¯ããªã«åºå®ãããŠããã®ã§ããã°ããã®åºå®ãããããŒãžã§ã³ã衚瀺ãããŸãã ãã以å€ã®å Žåãã¢ãžã¥ãŒã« SDKã®ææ°ã®ã€ã³ã¹ããŒã«ããŒãžã§ã³ã瀺ããŸãã
ããã©ã«ãã§ã¯ããã®ã¢ãžã¥ãŒã«ã¯çŸåšã®ãã£ã¬ã¯ããªã«ä»¥äžã®ãã¡ã€ã«ã ååšããå Žåã«ã®ã¿ããã³ããã§è¡šç€ºãããŸã:
global.json
project.json
Directory.Build.props
Directory.Build.targets
Packages.props
*.csproj
*.fsproj
*.xproj
æ£ãã䜿çšããã«ã¯ã.NET Core SDKãã€ã³ã¹ããŒã«ããå¿ èŠããããŸãã
å
éšçã«ããã®ã¢ãžã¥ãŒã«ã¯èªèº«ã®ããŒãžã§ã³æ€ç¥ã®ã¡ã«ããºã ãå©çšããŸãã dotnet --version
ãå®è¡ãããã2åéãå®è¡ã§ããŸããã.NET projectäžè¬çã§ãªããã£ã¬ã¯ããªlayoutã®å Žåã¯ééã£ãããŒãžã§ã³ã瀺ãããŠããŸãããšããããŸãã é床ããã粟床ãéèŠãªå Žåã¯ã次ã®æ¹æ³ã§ã¡ã«ããºã ãç¡å¹ã«ã§ããŸãã ã¢ãžã¥ãŒã«ãªãã·ã§ã³ã§heuristic = false
ãèšå®ããŸãã
ãã®ã¢ãžã¥ãŒã«ã¯ãã«ã¬ã³ããã£ã¬ã¯ããªã« .csproj
ãã¡ã€ã«ãããå ŽåãTarget Framework Moniker (https://docs.microsoft.com/en-us/dotnet/standard/frameworks#supported-target-frameworks) ã衚瀺ããŸãã
ãªãã·ã§ã³
ãªãã·ã§ã³ | ããã©ã«ã | 説æ |
---|---|---|
format |
'via [$symbol($version )(ð¯ $tfm )]($style)' |
module ã®ãã©ãŒãããã§ãã |
version_format |
'v${raw}' |
ããŒãžã§ã³ã®ãã©ãŒãããã 䜿çšå¯èœãªå€æ°ã¯raw ãmajor ãminor ãšpatch ã§ãã |
symbol |
'.NET ' |
dotnetã®ããŒãžã§ã³ã衚瀺ããåã«äœ¿çšãããèšå·ã§ãã |
heuristic |
true |
ããé«éãªããŒãžã§ã³æ€åºã䜿çšããŠãstarshipã®åäœãç¶æããŸãã |
detect_extensions |
['csproj', 'fsproj', 'xproj'] |
ã©ã®æ¡åŒµåããã®ã¢ãžã¥ãŒã«ãã¢ã¯ãã£ãã«ããã |
detect_files |
['global.json', 'project.json', 'Directory.Build.props', 'Directory.Build.targets', 'Packages.props'] |
ã©ã®ãã¡ã€ã«åããã®ã¢ãžã¥ãŒã«ãã¢ã¯ãã£ãã«ããã |
detect_folders |
[] |
ã©ã®ãã©ã«ããŒããã®ã¢ãžã¥ãŒã«ãã¢ã¯ãã£ãã«ããã |
style |
'bold blue' |
ã¢ãžã¥ãŒã«ã®ã¹ã¿ã€ã«ã§ãã |
disabled |
false |
dotnet ã¢ãžã¥ãŒã«ãç¡å¹ã«ããŸãã |
å€æ°
å€æ° | èšå®äŸ | 説æ |
---|---|---|
version | v3.1.201 |
dotnet sdk ã®ããŒãžã§ã³ã§ã |
tfm | netstandard2.0 |
çŸåšã®ãããžã§ã¯ãã察象ãšããŠããã¿ãŒã²ãã ãã¬ãŒã ã¯ãŒã¯ ã¢ãã«ãŒ |
symbol | ãªãã·ã§ã³ symbol ã®å€ããã©ãŒãã |
|
style* | ãªãã·ã§ã³ style ã®å€ããã©ãŒãã |
*: ãã®å€æ°ã¯ãã¹ã¿ã€ã«æååã®äžéšãšããŠã®ã¿äœ¿çšããããšãã§ããŸãã
èšå®äŸ
# ~/.config/starship.toml
[dotnet]
symbol = 'ð¥
'
style = 'green'
heuristic = false
Elixir
elixir
ã¢ãžã¥ãŒã«ã¯ãçŸåšã€ã³ã¹ããŒã«ãããŠããElixirãšErlang/OTPã®ããŒãžã§ã³ã衚瀺ããŸãã ããã©ã«ãã§ã¯æ¬¡ã®æ¡ä»¶ã®ãããããæºãããããšãã¢ãžã¥ãŒã«ã衚瀺ãããŸãã
- ã«ã¬ã³ããã£ã¬ã¯ããªã«
mix.exs
ãã¡ã€ã«ãå«ãŸããŠãã.
ãªãã·ã§ã³
ãªãã·ã§ã³ | ããã©ã«ã | 説æ |
---|---|---|
format |
'via [$symbol($version \(OTP $otp_version\) )]($style)' |
module elixirã®ãã©ãŒãããã§ãã |
version_format |
'v${raw}' |
ããŒãžã§ã³ã®ãã©ãŒãããã 䜿çšå¯èœãªå€æ°ã¯raw ãmajor ãminor ãšpatch ã§ãã |
symbol |
'ð§ ' |
Elixir/Erlangã®ããŒãžã§ã³ã衚瀺ããåã«äœ¿çšãããèšå·ã§ãã |
detect_extensions |
[] |
ã©ã®æ¡åŒµåããã®ã¢ãžã¥ãŒã«ãã¢ã¯ãã£ãã«ããã |
detect_files |
['mix.exs'] |
ã©ã®ãã¡ã€ã«åããã®ã¢ãžã¥ãŒã«ãã¢ã¯ãã£ãã«ããã |
detect_folders |
[] |
ã©ã®ãã©ã«ããŒããã®ã¢ãžã¥ãŒã«ãã¢ã¯ãã£ãã«ããã |
style |
'bold purple' |
ã¢ãžã¥ãŒã«ã®ã¹ã¿ã€ã«ã§ãã |
disabled |
false |
elixir ã¢ãžã¥ãŒã«ãç¡å¹ã«ããŸãã |
å€æ°
å€æ° | èšå®äŸ | 説æ |
---|---|---|
version | v1.10 |
elixir ã®ããŒãžã§ã³ |
otp_version | elixir ã®otpããŒãžã§ã³ |
|
symbol | ãªãã·ã§ã³ symbol ã®å€ããã©ãŒãã |
|
style* | ãªãã·ã§ã³ style ã®å€ããã©ãŒãã |
*: ãã®å€æ°ã¯ãã¹ã¿ã€ã«æååã®äžéšãšããŠã®ã¿äœ¿çšããããšãã§ããŸãã
èšå®äŸ
# ~/.config/starship.toml
[elixir]
symbol = 'ð® '
Elm
elm
ã¢ãžã¥ãŒã«ã¯ãçŸåšã€ã³ã¹ããŒã«ãããŠããElmã®ããŒãžã§ã³ã衚瀺ããŸãã ããã©ã«ãã§ã¯æ¬¡ã®æ¡ä»¶ã®ãããããæºãããããšãã¢ãžã¥ãŒã«ã衚瀺ãããŸãã
- ã«ã¬ã³ããã£ã¬ã¯ããªã«
elm.json
ãã¡ã€ã«ãå«ãŸããŠãã - ã«ã¬ã³ããã£ã¬ã¯ããªã«
elm-package.json
ãã¡ã€ã«ãå«ãŸããŠãã - ã«ã¬ã³ããã£ã¬ã¯ããªã«
.elm-version
ãã¡ã€ã«ãå«ãŸããŠãã - ã«ã¬ã³ããã£ã¬ã¯ããªã«
elm-stuff
ãã©ã«ããå«ãŸããŠãã - ã«ã¬ã³ããã£ã¬ã¯ããªã«
*.elm
ãã¡ã€ã«ãå«ãŸããŠãã
ãªãã·ã§ã³
ãªãã·ã§ã³ | ããã©ã«ã | 説æ |
---|---|---|
format |
'via [$symbol($version )]($style)' |
module ã®ãã©ãŒãããã§ãã |
version_format |
'v${raw}' |
ããŒãžã§ã³ã®ãã©ãŒãããã 䜿çšå¯èœãªå€æ°ã¯raw ãmajor ãminor ãšpatch ã§ãã |
symbol |
'ð³ ' |
Elmã®ã·ã³ãã«ãè¡šããã©ãŒãããæåå |
detect_extensions |
['elm'] |
ã©ã®æ¡åŒµåããã®ã¢ãžã¥ãŒã«ãã¢ã¯ãã£ãã«ããã |
detect_files |
['elm.json', 'elm-package.json', '.elm-version'] |
ã©ã®ãã¡ã€ã«åããã®ã¢ãžã¥ãŒã«ãã¢ã¯ãã£ãã«ããã |
detect_folders |
['elm-stuff'] |
ã©ã®ãã©ã«ããŒããã®ã¢ãžã¥ãŒã«ãã¢ã¯ãã£ãã«ããã |
style |
'cyan bold' |
ã¢ãžã¥ãŒã«ã®ã¹ã¿ã€ã«ã§ãã |
disabled |
false |
elm ã¢ãžã¥ãŒã«ãç¡å¹ã«ããŸãã |
å€æ°
å€æ° | èšå®äŸ | 説æ |
---|---|---|
version | v0.19.1 |
elm ã®ããŒãžã§ã³ |
symbol | ãªãã·ã§ã³ symbol ã®å€ããã©ãŒãã |
|
style* | ãªãã·ã§ã³ style ã®å€ããã©ãŒãã |
*: ãã®å€æ°ã¯ãã¹ã¿ã€ã«æååã®äžéšãšããŠã®ã¿äœ¿çšããããšãã§ããŸãã
èšå®äŸ
# ~/.config/starship.toml
[elm]
format = 'via [î¬ $version](cyan bold) '
ç°å¢å€æ°
env_var
ã¢ãžã¥ãŒã«ã¯ãéžæãããç°å¢å€æ°ã®çŸåšã®å€ã衚瀺ããŸãã 次ã®æ¡ä»¶ã®ãããããæºãããããšãã¢ãžã¥ãŒã«ã衚瀺ãããŸãã
variable
ãªãã·ã§ã³ããæ¢åã®ç°å¢å€æ°ãšäžèŽããvariable
ãªãã·ã§ã³ãå®çŸ©ãããŠããããdefault
ãªãã·ã§ã³ãå®çŸ©ãããŠãã
::: tip
.
ã䜿ãããšã§è€æ°ã®ç°å¢å€æ°ã衚瀺ããããšãã§ããŸãã (äŸã確èªããŠã¿ãŠãã ãã) variable
ãèšå®ãããŠããªãå Žåããã®ã¢ãžã¥ãŒã«ã¯.
以éã«æžãããŠããç°å¢å€æ°ã®å€ã衚瀺ããŸãã
äŸ: 次ã®èšå®ã§ã¯USERç°å¢å€æ°ã衚瀺ããŸãã
# ~/.config/starship.toml
[env_var.USER]
default = 'unknown user'
:::
ãªãã·ã§ã³
ãªãã·ã§ã³ | ããã©ã«ã | 説æ |
---|---|---|
symbol |
'' |
ç°å¢å€æ°ã衚瀺ããåã«äœ¿çšãããèšå·ã§ãã |
variable |
衚瀺ãããç°å¢å€æ°ã§ãã | |
default |
äžã®variableãå®çŸ©ãããŠããªãå Žåã«è¡šç€ºãããããã©ã«ãã®å€ã§ãã | |
format |
'with [$env_value]($style) ' |
module ã®ãã©ãŒãããã§ãã |
disabled |
false |
env_var ã¢ãžã¥ãŒã«ãç¡å¹ã«ããŸãã |
å€æ°
å€æ° | èšå®äŸ | 説æ |
---|---|---|
env_value | Windows NT (if variable would be $OS ) |
ãªãã·ã§ã³variable ã®å€ |
symbol | ãªãã·ã§ã³ symbol ã®å€ããã©ãŒãã |
|
style* | black bold dimmed |
ãªãã·ã§ã³ style ã®å€ããã©ãŒãã |
*: ãã®å€æ°ã¯ãã¹ã¿ã€ã«æååã®äžéšãšããŠã®ã¿äœ¿çšããããšãã§ããŸãã
èšå®äŸ
# ~/.config/starship.toml
[env_var]
variable = 'SHELL'
default = 'unknown shell'
Displaying multiple environmental variables:
# ~/.config/starship.toml
[env_var.SHELL]
variable = 'SHELL'
default = 'unknown shell'
[env_var.USER]
default = 'unknown user'
Erlang
erlang
ã¢ãžã¥ãŒã«ã¯ãçŸåšã€ã³ã¹ããŒã«ãããŠããErlang/OTPã®ããŒãžã§ã³ã衚瀺ããŸãã ããã©ã«ãã§ã¯æ¬¡ã®æ¡ä»¶ã®ãããããæºãããããšãã¢ãžã¥ãŒã«ã衚瀺ãããŸãã
- ã«ã¬ã³ããã£ã¬ã¯ããªã«
rebar.config
ãã¡ã€ã«ãå«ãŸããŠãã. - ã«ã¬ã³ããã£ã¬ã¯ããªã«
erlang.mk
ãã¡ã€ã«ãå«ãŸããŠãã.
ãªãã·ã§ã³
ãªãã·ã§ã³ | ããã©ã«ã | 説æ |
---|---|---|
format |
'via [$symbol($version )]($style)' |
module ã®ãã©ãŒãããã§ãã |
version_format |
'v${raw}' |
ããŒãžã§ã³ã®ãã©ãŒãããã 䜿çšå¯èœãªå€æ°ã¯raw ãmajor ãminor ãšpatch ã§ãã |
symbol |
'î± ' |
Erlangã®ããŒãžã§ã³ã衚瀺ããåã«äœ¿çšãããèšå·ã§ãã |
style |
'bold red' |
ã¢ãžã¥ãŒã«ã®ã¹ã¿ã€ã«ã§ãã |
detect_extensions |
[] |
ã©ã®æ¡åŒµåããã®ã¢ãžã¥ãŒã«ãã¢ã¯ãã£ãã«ããã |
detect_files |
['rebar.config', 'elang.mk'] |
ã©ã®ãã¡ã€ã«åããã®ã¢ãžã¥ãŒã«ãã¢ã¯ãã£ãã«ããã |
detect_folders |
[] |
ã©ã®ãã©ã«ããŒããã®ã¢ãžã¥ãŒã«ãã¢ã¯ãã£ãã«ããã |
disabled |
false |
erlang ã¢ãžã¥ãŒã«ãç¡å¹ã«ããŸãã |
å€æ°
å€æ° | èšå®äŸ | 説æ |
---|---|---|
version | v22.1.3 |
erlang ã®ããŒãžã§ã³ |
symbol | ãªãã·ã§ã³ symbol ã®å€ããã©ãŒãã |
|
style* | ãªãã·ã§ã³ style ã®å€ããã©ãŒãã |
*: ãã®å€æ°ã¯ãã¹ã¿ã€ã«æååã®äžéšãšããŠã®ã¿äœ¿çšããããšãã§ããŸãã
èšå®äŸ
# ~/.config/starship.toml
[erlang]
format = 'via [e $version](bold red) '
Fill
fill
ã¢ãžã¥ãŒã«ã¯è¡ã®äœåãªã¹ããŒã¹ãèšå·ã§åããŸãã äžè¡ã«è€æ°ã®fill
ã¢ãžã¥ãŒã«ãååšããå Žåããããã¯ã¹ããŒã¹ãåçã«åå²ããŸãã ããã¯ãä»ã®ã¢ãžã¥ãŒã«ã®äœçœ®åããã«äŸ¿å©ã§ãã
ãªãã·ã§ã³
ãªãã·ã§ã³ | ããã©ã«ã | 説æ |
---|---|---|
symbol |
'.' |
è¡ãåããããã«äœ¿ãèšå· |
style |
'bold black' |
ã¢ãžã¥ãŒã«ã®ã¹ã¿ã€ã«ã§ãã |
disabled |
false |
fill ã¢ãžã¥ãŒã«ãç¡å¹ã«ããŸãã |
èšå®äŸ
# ~/.config/starship.toml
format = 'AA $fill BB $fill CC'
[fill]
symbol = '-'
style = 'bold green'
ãã®ãããªåºåã«ãªããŸã:
AA -------------------------------------------- BB -------------------------------------------- CC
Google Cloud (gcloud
)
gcloud
ã¢ãžã¥ãŒã«ã¯ã gcloud
CLIã®çŸåšã®èšå®ã衚瀺ãããŸãã ãã㯠~/.config/gcloud/active_config
ãã¡ã€ã«ãš ~/.config/gcloud/configurations/config_{CONFIG NAME}
ãã¡ã€ã«ãš CLOUDSDK_CONFIG
ç°å¢å€æ°ã«åºã¥ããŸãã
ãªãã·ã§ã³
ãªãã·ã§ã³ | ããã©ã«ã | 説æ |
---|---|---|
format |
'on [$symbol$account(@$domain)(\($region\))]($style) ' |
module ã®ãã©ãŒãããã§ãã |
symbol |
'âïž ' |
çŸåšã®GCPãããã¡ã€ã«ã衚瀺ããåã«è¡šç€ºãããèšå·ã§ãã |
region_aliases |
{} |
GCPåã«å ããŠè¡šç€ºãããªãŒãžã§ã³ã®ãšã€ãªã¢ã¹ã§ãã |
project_aliases |
{} |
GCPåã«å ããŠè¡šç€ºãããããžã§ã¯ãã®ãšã€ãªã¢ã¹ã§ãã |
style |
'bold blue' |
ã¢ãžã¥ãŒã«ã®ã¹ã¿ã€ã«ã§ãã |
disabled |
false |
gcloud ã¢ãžã¥ãŒã«ãç¡å¹ã«ããŸãã |
å€æ°
å€æ° | èšå®äŸ | 説æ |
---|---|---|
region | us-central1 |
çŸåšã®GCPãªãŒãžã§ã³ |
account | foo |
çŸåšã®GCPãããã¡ã€ã« |
domain | example.com |
çŸåšã®GCPãããã¡ã€ã«ã®ãã¡ã€ã³ |
project | çŸåšã®GCPãããžã§ã¯ã | |
active | default |
~/.config/gcloud/active_config ã«æžãããã¢ã¯ãã£ããªèšå®å |
symbol | ãªãã·ã§ã³ symbol ã®å€ããã©ãŒãã |
|
style* | ãªãã·ã§ã³ style ã®å€ããã©ãŒãã |
*: ãã®å€æ°ã¯ãã¹ã¿ã€ã«æååã®äžéšãšããŠã®ã¿äœ¿çšããããšãã§ããŸãã
èšå®äŸ
ã¢ã«ãŠã³ããšãããžã§ã¯ãã衚瀺
# ~/.config/starship.toml
[gcloud]
format = 'on [$symbol$account(@$domain)(\($project\))]($style) '
ã¢ã¯ãã£ããªèšå®åã®ã¿è¡šç€º
# ~/.config/starship.toml
[gcloud]
format = '[$symbol$active]($style) '
style = 'bold yellow'
ã¢ã«ãŠã³ããšãšã€ãªã¢ã¹ããããªãŒãžã§ã³ã衚瀺ãã
# ~/.config/starship.toml
[gcloud]
symbol = 'ïžð¬ïž '
[gcloud.region_aliases]
us-central1 = 'uc1'
asia-northeast1 = 'an1'
ã¢ã«ãŠã³ããšãšã€ãªã¢ã¹ããããããžã§ã¯ãã衚瀺
# ~/.config/starship.toml
[gcloud]
format = 'on [$symbol$account(@$domain)(\($project\))]($style) '
[gcloud.project_aliases]
very-long-project-name = 'vlpn'
Git Branch
git_branch
ã¢ãžã¥ãŒã«ã¯ãçŸåšã®ãã£ã¬ã¯ããªã«ãããªããžããªã®ã¢ã¯ãã£ããªãã©ã³ãã衚瀺ããŸãã
ãªãã·ã§ã³
ãªãã·ã§ã³ | ããã©ã«ã | 説æ |
---|---|---|
always_show_remote |
false |
ããŒã«ã«ãã©ã³ãåãšçããå Žåã§ãããªã¢ãŒã远跡ãã©ã³ãåã衚瀺ããŸãã |
format |
'on [$symbol$branch(:$remote_branch)]($style) ' |
module ã®ãã©ãŒãããã§ãã Use '$branch' to refer to the current branch name. |
symbol |
'î ' |
gitãã©ã³ãã®ã·ã³ãã«ãè¡šããã©ãŒãããæååã |
style |
'bold purple' |
ã¢ãžã¥ãŒã«ã®ã¹ã¿ã€ã«ã§ãã |
truncation_length |
2^63 - 1 |
Truncates a git branch to N graphemes. |
truncation_symbol |
'âŠ' |
ãã©ã³ãååãæšãŠãããŠããããšã瀺ãããã®èšå·ã§ãã You can use '' for no symbol. |
only_attached |
false |
Only show the branch name when not in a detached HEAD state. |
ignore_branches |
[] |
衚瀺ããªãååã®ãªã¹ãã Useful for 'master' or 'main'. |
disabled |
false |
git_branch ã¢ãžã¥ãŒã«ãç¡å¹ã«ããŸãã |
å€æ°
å€æ° | èšå®äŸ | 説æ |
---|---|---|
branch | master |
çŸåšã®ãã©ã³ãããªãå Žåã¯ãçŸåšã®ãã©ã³ãåã¯HEAD ã«æ»ããŸã(äŸ: git detached HEAD ) |
remote_name | origin |
ãªã¢ãŒãå |
remote_branch | master |
remote_name ã§è¿œè·¡ããããã©ã³ãå |
symbol | ãªãã·ã§ã³ symbol ã®å€ããã©ãŒãã |
|
style* | ãªãã·ã§ã³ style ã®å€ããã©ãŒãã |
*: ãã®å€æ°ã¯ãã¹ã¿ã€ã«æååã®äžéšãšããŠã®ã¿äœ¿çšããããšãã§ããŸãã
èšå®äŸ
# ~/.config/starship.toml
[git_branch]
symbol = 'ð± '
truncation_length = 4
truncation_symbol = ''
ignore_branches = ['master', 'main']
Git Commit
git_commit
ã¢ãžã¥ãŒã«ã¯ãã«ã¬ã³ããã£ã¬ã¯ããªã®ãªããžããªã®çŸåšã®ã³ãããããã·ã¥ãšã¿ã° (ããããã°) ã衚瀺ããŸãã
ãªãã·ã§ã³
ãªãã·ã§ã³ | ããã©ã«ã | 説æ |
---|---|---|
commit_hash_length |
7 |
衚瀺ããã git ã³ãããããã·ã¥ã®é·ãã |
format |
'[\($hash$tag\)]($style) ' |
module ã®ãã©ãŒãããã§ãã |
style |
'bold green' |
ã¢ãžã¥ãŒã«ã®ã¹ã¿ã€ã«ã§ãã |
only_detached |
true |
detached HEAD ç¶æ
ã®ãšãã®ã¿ git ã³ãããããã·ã¥ã衚瀺ãã |
tag_disabled |
true |
git_commit ã¢ãžã¥ãŒã«ã®ã¿ã°æ
å ±ã®è¡šç€ºãç¡å¹ã«ããã |
tag_max_candidates |
0 |
How many commits to consider for tag display. The default only allows exact matches. |
tag_symbol |
' ð· ' |
衚瀺ãããæ å ±ã®åã«è¿œå ãããã¿ã°ã·ã³ãã« |
disabled |
false |
git_commit ã¢ãžã¥ãŒã«ãç¡å¹ã«ããŸãã |
å€æ°
å€æ° | èšå®äŸ | 説æ |
---|---|---|
hash | b703eb3 |
çŸåšã® git ã³ãããããã·ã¥ |
style* | ãªãã·ã§ã³ style ã®å€ããã©ãŒãã |
*: ãã®å€æ°ã¯ãã¹ã¿ã€ã«æååã®äžéšãšããŠã®ã¿äœ¿çšããããšãã§ããŸãã
èšå®äŸ
# ~/.config/starship.toml
[git_commit]
commit_hash_length = 4
tag_symbol = 'ð '
Git State
git_state
ã¢ãžã¥ãŒã«ã¯gitãã£ã¬ã¯ããªã®é²è¡ç¶æ
ãè¡šããŸãã (äŸ: REBASING, BISECTING, ãã®ä») é²è¡ç¶æ³ã®æ
å ±ãããå Žå㯠(äŸ:REBASING 3/10)ããã®æ
å ±ã衚瀺ãããŸãã
ãªãã·ã§ã³
ãªãã·ã§ã³ | ããã©ã«ã | 説æ |
---|---|---|
rebase |
'REBASING' |
rebase é²è¡äžã«è¡šç€ºããããã©ãŒãããæååã§ãã |
merge |
'MERGING' |
merge é²è¡äžã«è¡šç€ºããããã©ãŒãããæååã§ãã |
revert |
'REVERTING' |
revert é²è¡äžã«è¡šç€ºããããã©ãŒãããæååã§ãã |
cherry_pick |
'CHERRY-PICKING' |
cherry-pick é²è¡äžã«è¡šç€ºããããã©ãŒãããæååã§ãã |
bisect |
'BISECTING' |
bisect é²è¡äžã«è¡šç€ºããããã©ãŒãããæååã§ãã |
am |
'AM' |
apply-mailbox (git am ) é²è¡äžã«è¡šç€ºããããã©ãŒãããæååã§ãã |
am_or_rebase |
'AM/REBASE' |
ãããŸããªapply-mailbox ãŸãã¯rebase ãé²è¡äžã®ãšãã«è¡šç€ºããããã©ãŒãããæååã§ãã |
style |
'bold yellow' |
ã¢ãžã¥ãŒã«ã®ã¹ã¿ã€ã«ã§ãã |
format |
'\([$state( $progress_current/$progress_total)]($style)\) ' |
module ã®ãã©ãŒãããã§ãã |
disabled |
false |
git_state ã¢ãžã¥ãŒã«ãç¡å¹ã«ããŸãã |
å€æ°
å€æ° | èšå®äŸ | 説æ |
---|---|---|
state | REBASING |
çŸåšã®ãªããžããªã®ç¶æ |
progress_current | 1 |
çŸåšã®é²è¡ç¶æ |
progress_total | 2 |
å šäœã®é²è¡ç¶æ |
style* | ãªãã·ã§ã³ style ã®å€ããã©ãŒãã |
*: ãã®å€æ°ã¯ãã¹ã¿ã€ã«æååã®äžéšãšããŠã®ã¿äœ¿çšããããšãã§ããŸãã
èšå®äŸ
# ~/.config/starship.toml
[git_state]
format = '[\($state( $progress_current of $progress_total)\)]($style) '
cherry_pick = '[ð PICKING](bold red)'
Git Metrics
The git_metrics
module will show the number of added and deleted lines in the current git repository.
::: tip
ãã®ã¢ãžã¥ãŒã«ã¯ããã©ã«ãã§ç¡å¹ã«ãªã£ãŠããŸãã æå¹ã«ããã«ã¯ãèšå®ãã¡ã€ã«ã§ disabled
ã false
ã«èšå®ããŸãã
:::
ãªãã·ã§ã³
ãªãã·ã§ã³ | ããã©ã«ã | 説æ |
---|---|---|
added_style |
'bold green' |
The style for the added count. |
deleted_style |
'bold red' |
The style for the deleted count. |
only_nonzero_diffs |
true |
Render status only for changed items. |
format |
'([+$added]($added_style) )([-$deleted]($deleted_style) )' |
module ã®ãã©ãŒãããã§ãã |
disabled |
true |
Disables the git_metrics module. |
å€æ°
å€æ° | èšå®äŸ | 説æ |
---|---|---|
added | 1 |
The current number of added lines |
deleted | 2 |
The current number of deleted lines |
added_style* | Mirrors the value of option added_style |
|
deleted_style* | Mirrors the value of option deleted_style |
*: ãã®å€æ°ã¯ãã¹ã¿ã€ã«æååã®äžéšãšããŠã®ã¿äœ¿çšããããšãã§ããŸãã
èšå®äŸ
# ~/.config/starship.toml
[git_metrics]
added_style = 'bold blue'
format = '[+$added]($added_style)/[-$deleted]($deleted_style) '
Git Status
git_status
ã¢ãžã¥ãŒã«ã¯ãã«ã¬ã³ããã£ã¬ã¯ããªã®ãªããžããªã®ç¶æ
ãè¡šãã·ã³ãã«ã衚瀺ããŸãã
::: tip
WSLç°å¢ã®Windowsãã£ã¬ã¯ããª(äŸ: /mnt/c/
以äž) ã§ã¯ãGit Statusã¢ãžã¥ãŒã«ã¯åäœãéåžžã«é
ãã§ãã ã¢ãžã¥ãŒã«ãç¡å¹ã«ããããwindows_starship
ãªãã·ã§ã³ã䜿çšããããšã§ãWindowsãã€ãã£ãã®Starshipã䜿çšãã察象ã®git_status
ãèšç®ã§ããŸãã
:::
ãªãã·ã§ã³
ãªãã·ã§ã³ | ããã©ã«ã | 説æ |
---|---|---|
format |
'([\[$all_status$ahead_behind\]]($style) )' |
git_status ã®ããã©ã«ããã©ãŒããã |
conflicted |
'=' |
ãã®ãã©ã³ãã«ã¯ããŒãžã®ç«¶åããããŸãã |
ahead |
'â¡' |
ahead ã®ãã©ãŒããã |
behind |
'â£' |
behind ã®ãã©ãŒããã |
diverged |
'â' |
diverged ã®ãã©ãŒããã |
up_to_date |
'' |
up_to_date ã®ãã©ãŒããã |
untracked |
'?' |
untracked ã®ãã©ãŒããã |
stashed |
'$' |
stashed ã®ãã©ãŒããã |
modified |
'!' |
modified ã®ãã©ãŒããã |
staged |
'+' |
staged ã®ãã©ãŒããã |
renamed |
'»' |
renamed ã®ãã©ãŒããã |
deleted |
'â' |
deleted ã®ãã©ãŒããã |
style |
'bold red' |
ã¢ãžã¥ãŒã«ã®ã¹ã¿ã€ã«ã§ãã |
ignore_submodules |
false |
ãµãã¢ãžã¥ãŒã«ã®å€æŽãç¡èŠããŸãã |
disabled |
false |
git_status ã¢ãžã¥ãŒã«ãç¡å¹ã«ããŸãã |
windows_starship |
WSLã§Windowsãã£ã¬ã¯ããªã®git_status ã§äœ¿çšããWindows Starshipã®å®è¡ãã¡ã€ã«ã®Linuxäžã§ã®ãã¹ã |
å€æ°
format
å
ã§ã¯ä»¥äžã®å€æ°ãå©çšã§ããŸãã
å€æ° | 説æ |
---|---|
all_status |
Shortcut for$conflicted$stashed$deleted$renamed$modified$staged$untracked |
ahead_behind |
Displays diverged , ahead , behind or up_to_date format string based on the current status of the repo. |
conflicted |
Displays conflicted when this branch has merge conflicts. |
untracked |
Displays untracked when there are untracked files in the working directory. |
stashed |
Displays stashed when a stash exists for the local repository. |
modified |
Displays modified when there are file modifications in the working directory. |
staged |
Displays staged when a new file has been added to the staging area. |
renamed |
Displays renamed when a renamed file has been added to the staging area. |
deleted |
Displays deleted when a file's deletion has been added to the staging area. |
style* | ãªãã·ã§ã³ style ã®å€ããã©ãŒãã |
*: ãã®å€æ°ã¯ãã¹ã¿ã€ã«æååã®äžéšãšããŠã®ã¿äœ¿çšããããšãã§ããŸãã
The following variables can be used in diverged
:
å€æ° | 説æ |
---|---|
ahead_count |
Number of commits ahead of the tracking branch |
behind_count |
Number of commits behind the tracking branch |
The following variables can be used in conflicted
, ahead
, behind
, untracked
, stashed
, modified
, staged
, renamed
and deleted
:
å€æ° | 説æ |
---|---|
count |
ãã¡ã€ã«ã®æ°ã衚瀺ããŸãã |
èšå®äŸ
# ~/.config/starship.toml
[git_status]
conflicted = 'ð³'
ahead = 'ððš'
behind = 'ð°'
diverged = 'ðµ'
up_to_date = 'â'
untracked = 'ð€·'
stashed = 'ðŠ'
modified = 'ð'
staged = '[++\($count\)](green)'
renamed = 'ð
'
deleted = 'ð'
Show ahead/behind count of the branch being tracked
# ~/.config/starship.toml
[git_status]
ahead = 'â¡${count}'
diverged = 'ââ¡${ahead_count}â£${behind_count}'
behind = 'â£${count}'
Use Windows Starship executable on Windows paths in WSL
# ~/.config/starship.toml
[git_status]
windows_starship = '/mnt/c/Users/username/scoop/apps/starship/current/starship.exe'
Go
golang
ã¢ãžã¥ãŒã«ã¯ãçŸåšã€ã³ã¹ããŒã«ãããŠããGoã®ããŒãžã§ã³ã衚瀺ããŸãã ããã©ã«ãã§ã¯æ¬¡ã®æ¡ä»¶ã®ãããããæºãããããšãã¢ãžã¥ãŒã«ã衚瀺ãããŸãã
- ã«ã¬ã³ããã£ã¬ã¯ããªã«
go.mod
ãã¡ã€ã«ãå«ãŸããŠãã - ã«ã¬ã³ããã£ã¬ã¯ããªã«
go.sum
ãã¡ã€ã«ãå«ãŸããŠãã - ã«ã¬ã³ããã£ã¬ã¯ããªã«
go.work
ãã¡ã€ã«ãå«ãŸããŠãã - ã«ã¬ã³ããã£ã¬ã¯ããªã«
glide.yaml
ãã¡ã€ã«ãå«ãŸããŠãã - ã«ã¬ã³ããã£ã¬ã¯ããªã«
Gopkg.yml
ãã¡ã€ã«ãå«ãŸããŠãã - ã«ã¬ã³ããã£ã¬ã¯ããªã«
Gopkg.lock
ãã¡ã€ã«ãå«ãŸããŠãã - ã«ã¬ã³ããã£ã¬ã¯ããªã«
.go-version
ãã¡ã€ã«ãå«ãŸããŠãã - ã«ã¬ã³ããã£ã¬ã¯ããªã«
Godeps
ãã¡ã€ã«ãå«ãŸããŠãã - ã«ã¬ã³ããã£ã¬ã¯ããªã«
.go
ã®æ¡åŒµåã®ãã¡ã€ã«ãå«ãŸããŠãã
ãªãã·ã§ã³
ãªãã·ã§ã³ | ããã©ã«ã | 説æ |
---|---|---|
format |
'via [$symbol($version )]($style)' |
module ã®ãã©ãŒãããã§ãã |
version_format |
'v${raw}' |
ããŒãžã§ã³ã®ãã©ãŒãããã 䜿çšå¯èœãªå€æ°ã¯raw ãmajor ãminor ãšpatch ã§ãã |
symbol |
'ð¹ ' |
A format string representing the symbol of Go. |
detect_extensions |
['go'] |
ã©ã®æ¡åŒµåããã®ã¢ãžã¥ãŒã«ãã¢ã¯ãã£ãã«ããã |
detect_files |
['go.mod', 'go.sum', 'go.work', 'glide.yaml', 'Gopkg.yml', 'Gopkg.lock', '.go-version'] |
ã©ã®ãã¡ã€ã«åããã®ã¢ãžã¥ãŒã«ãã¢ã¯ãã£ãã«ããã |
detect_folders |
['Godeps'] |
ã©ã®ãã©ã«ããŒããã®ã¢ãžã¥ãŒã«ãã¢ã¯ãã£ãã«ããã |
style |
'bold cyan' |
ã¢ãžã¥ãŒã«ã®ã¹ã¿ã€ã«ã§ãã |
disabled |
false |
golang ã¢ãžã¥ãŒã«ãç¡å¹ã«ããŸãã |
å€æ°
å€æ° | èšå®äŸ | 説æ |
---|---|---|
version | v1.12.1 |
The version of go |
symbol | ãªãã·ã§ã³ symbol ã®å€ããã©ãŒãã |
|
style* | ãªãã·ã§ã³ style ã®å€ããã©ãŒãã |
*: ãã®å€æ°ã¯ãã¹ã¿ã€ã«æååã®äžéšãšããŠã®ã¿äœ¿çšããããšãã§ããŸãã
èšå®äŸ
# ~/.config/starship.toml
[golang]
format = 'via [ððš $version](bold cyan) '
Guix-shell
The guix_shell
module shows the guix-shell environment. The module will be shown when inside a guix-shell environment.
ãªãã·ã§ã³
ãªãã·ã§ã³ | ããã©ã«ã | 説æ |
---|---|---|
format |
'via [$symbol]($style) ' |
module ã®ãã©ãŒãããã§ãã |
symbol |
"ð " |
A format string representing the symbol of guix-shell. |
style |
"yellow bold" |
ã¢ãžã¥ãŒã«ã®ã¹ã¿ã€ã«ã§ãã |
disabled |
false |
Disables the guix_shell module. |
å€æ°
å€æ° | èšå®äŸ | 説æ |
---|---|---|
symbol | ãªãã·ã§ã³ symbol ã®å€ããã©ãŒãã |
|
style* | ãªãã·ã§ã³ style ã®å€ããã©ãŒãã |
*: ãã®å€æ°ã¯ãã¹ã¿ã€ã«æååã®äžéšãšããŠã®ã¿äœ¿çšããããšãã§ããŸãã
èšå®äŸ
# ~/.config/starship.toml
[guix_shell]
disabled = true
format = 'via [ð](yellow bold) '
Haskell
The haskell
module finds the current selected GHC version and/or the selected Stack snapshot.
ããã©ã«ãã§ã¯æ¬¡ã®æ¡ä»¶ã®ãããããæºãããããšãã¢ãžã¥ãŒã«ã衚瀺ãããŸãã
- ã«ã¬ã³ããã£ã¬ã¯ããªã«
stack.yaml
ãã¡ã€ã«ãå«ãŸããŠãã - ã«ã¬ã³ããã£ã¬ã¯ããªã«
.hs
ã.cabal
ãŸãã¯.hs-boot
ã®ãã¡ã€ã«ãå«ãŸããŠãã
ãªãã·ã§ã³
ãªãã·ã§ã³ | ããã©ã«ã | 説æ |
---|---|---|
format |
'via [$symbol($version )]($style)' |
module ã®ãã©ãŒãããã§ãã |
symbol |
'λ ' |
A format string representing the symbol of Haskell |
detect_extensions |
['hs', 'cabal', 'hs-boot'] |
ã©ã®æ¡åŒµåããã®ã¢ãžã¥ãŒã«ãã¢ã¯ãã£ãã«ããã |
detect_files |
['stack.yaml', 'cabal.project'] |
ã©ã®ãã¡ã€ã«åããã®ã¢ãžã¥ãŒã«ãã¢ã¯ãã£ãã«ããã |
detect_folders |
[] |
ã©ã®ãã©ã«ããŒããã®ã¢ãžã¥ãŒã«ãã¢ã¯ãã£ãã«ããã |
style |
'bold purple' |
ã¢ãžã¥ãŒã«ã®ã¹ã¿ã€ã«ã§ãã |
disabled |
false |
Disables the haskell module. |
å€æ°
å€æ° | èšå®äŸ | 説æ |
---|---|---|
version | ghc_version or snapshot depending on whether the current project is a Stack project |
|
snapshot | lts-18.12 |
Currently selected Stack snapshot |
ghc_version | 9.2.1 |
Currently installed GHC version |
symbol | ãªãã·ã§ã³ symbol ã®å€ããã©ãŒãã |
|
style* | ãªãã·ã§ã³ style ã®å€ããã©ãŒãã |
*: ãã®å€æ°ã¯ãã¹ã¿ã€ã«æååã®äžéšãšããŠã®ã¿äœ¿çšããããšãã§ããŸãã
Haxe
The haxe
module shows the currently installed version of Haxe. ããã©ã«ãã§ã¯æ¬¡ã®æ¡ä»¶ã®ãããããæºãããããšãã¢ãžã¥ãŒã«ã衚瀺ãããŸãã
- The current directory contains a
project.xml
,Project.xml
,application.xml
,haxelib.json
,hxformat.json
or.haxerc
file - The current directory contains a
.haxelib
or ahaxe_libraries
directory - The current directory contains a file with the
.hx
or.hxml
extension
ãªãã·ã§ã³
ãªãã·ã§ã³ | ããã©ã«ã | 説æ |
---|---|---|
format |
"via [$symbol($version )]($style)" |
module ã®ãã©ãŒãããã§ãã |
version_format |
"v${raw}" |
ããŒãžã§ã³ã®ãã©ãŒãããã 䜿çšå¯èœãªå€æ°ã¯raw ãmajor ãminor ãšpatch ã§ãã |
detect_extensions |
["hx", "hxml"] |
ã©ã®æ¡åŒµåããã®ã¢ãžã¥ãŒã«ãã¢ã¯ãã£ãã«ããã |
detect_files |
["project.xml", "Project.xml", "application.xml", "haxelib.json", "hxformat.json", ".haxerc"] |
ã©ã®ãã¡ã€ã«åããã®ã¢ãžã¥ãŒã«ãã¢ã¯ãã£ãã«ããã |
detect_folders |
[".haxelib", "haxe_libraries"] |
ã©ã®ãã©ã«ããŒããã®ã¢ãžã¥ãŒã«ãã¢ã¯ãã£ãã«ããã |
symbol |
"â " |
A format string representing the symbol of Helm. |
style |
"bold fg:202" |
ã¢ãžã¥ãŒã«ã®ã¹ã¿ã€ã«ã§ãã |
disabled |
false |
Disables the haxe module. |
å€æ°
å€æ° | èšå®äŸ | 説æ |
---|---|---|
version | v4.2.5 |
The version of haxe |
symbol | ãªãã·ã§ã³ symbol ã®å€ããã©ãŒãã |
|
style* | ãªãã·ã§ã³ style ã®å€ããã©ãŒãã |
*: ãã®å€æ°ã¯ãã¹ã¿ã€ã«æååã®äžéšãšããŠã®ã¿äœ¿çšããããšãã§ããŸãã
èšå®äŸ
# ~/.config/starship.toml
[haxe]
format = "via [â $version](bold fg:202) "
Helm
helm
ã¢ãžã¥ãŒã«ã¯ãçŸåšã€ã³ã¹ããŒã«ãããŠããHelmã®ããŒãžã§ã³ã衚瀺ããŸãã ããã©ã«ãã§ã¯æ¬¡ã®æ¡ä»¶ã®ãããããæºãããããšãã¢ãžã¥ãŒã«ã衚瀺ãããŸãã
- ã«ã¬ã³ããã£ã¬ã¯ããªã«
helmfile.yaml
ãã¡ã€ã«ãå«ãŸããŠãã - ã«ã¬ã³ããã£ã¬ã¯ããªã«
Chart.yaml
ãã¡ã€ã«ãå«ãŸããŠãã
ãªãã·ã§ã³
ãªãã·ã§ã³ | ããã©ã«ã | 説æ |
---|---|---|
format |
'via [$symbol($version )]($style)' |
module ã®ãã©ãŒãããã§ãã |
version_format |
'v${raw}' |
ããŒãžã§ã³ã®ãã©ãŒãããã 䜿çšå¯èœãªå€æ°ã¯raw ãmajor ãminor ãšpatch ã§ãã |
detect_extensions |
[] |
ã©ã®æ¡åŒµåããã®ã¢ãžã¥ãŒã«ãã¢ã¯ãã£ãã«ããã |
detect_files |
['helmfile.yaml', 'Chart.yaml'] |
ã©ã®ãã¡ã€ã«åããã®ã¢ãžã¥ãŒã«ãã¢ã¯ãã£ãã«ããã |
detect_folders |
[] |
ã©ã®ãã©ã«ããŒããã®ã¢ãžã¥ãŒã«ãã¢ã¯ãã£ãã«ããã |
symbol |
'â ' |
A format string representing the symbol of Helm. |
style |
'bold white' |
ã¢ãžã¥ãŒã«ã®ã¹ã¿ã€ã«ã§ãã |
disabled |
false |
Disables the helm module. |
å€æ°
å€æ° | èšå®äŸ | 説æ |
---|---|---|
version | v3.1.1 |
The version of helm |
symbol | ãªãã·ã§ã³ symbol ã®å€ããã©ãŒãã |
|
style* | ãªãã·ã§ã³ style ã®å€ããã©ãŒãã |
*: ãã®å€æ°ã¯ãã¹ã¿ã€ã«æååã®äžéšãšããŠã®ã¿äœ¿çšããããšãã§ããŸãã
èšå®äŸ
# ~/.config/starship.toml
[helm]
format = 'via [â $version](bold white) '
Hostname
hostname
ã¢ãžã¥ãŒã«ã«ã¯ãã·ã¹ãã ã®ãã¹ãåã衚瀺ãããŸãã
ãªãã·ã§ã³
ãªãã·ã§ã³ | ããã©ã«ã | 説æ |
---|---|---|
ssh_only |
true |
SSHã»ãã·ã§ã³ã«æ¥ç¶ãããŠããå Žåã«ã®ã¿ãã¹ãåã衚瀺ããŸãã |
ssh_symbol |
'ð ' |
A format string representing the symbol when connected to SSH session. |
trim_at |
'.' |
ãã®æåãæåã«ããããããŸã§ããã¹ãåãšèªèããŸãã '.' will stop after the first dot. '' will disable any truncation |
format |
'[$ssh_symbol$hostname]($style) in ' |
module ã®ãã©ãŒãããã§ãã |
style |
'bold dimmed green' |
ã¢ãžã¥ãŒã«ã®ã¹ã¿ã€ã«ã§ãã |
disabled |
false |
hostname ã¢ãžã¥ãŒã«ãç¡å¹ã«ããŸãã |
å€æ°
å€æ° | èšå®äŸ | 説æ |
---|---|---|
hostname | computer |
The hostname of the computer |
style* | ãªãã·ã§ã³ style ã®å€ããã©ãŒãã |
|
ssh_symbol | 'ð ' |
The symbol to represent when connected to SSH session |
*: ãã®å€æ°ã¯ãã¹ã¿ã€ã«æååã®äžéšãšããŠã®ã¿äœ¿çšããããšãã§ããŸãã
èšå®äŸ
# ~/.config/starship.toml
[hostname]
ssh_only = false
format = '[$ssh_symbol](bold blue) on [$hostname](bold red) '
trim_at = '.companyname.com'
disabled = false
Java
Java
ã¢ãžã¥ãŒã«ã¯ãçŸåšã€ã³ã¹ããŒã«ãããŠããJavaã®ããŒãžã§ã³ã衚瀺ããŸãã ããã©ã«ãã§ã¯æ¬¡ã®æ¡ä»¶ã®ãããããæºãããããšãã¢ãžã¥ãŒã«ã衚瀺ãããŸãã
- The current directory contains a
pom.xml
,build.gradle.kts
,build.sbt
,.java-version
,deps.edn
,project.clj
, orbuild.boot
file - ã«ã¬ã³ããã£ã¬ã¯ããªã«æ¡åŒµåã
.java
ã.class
ã.gradle
ã.jar
ã.clj
ãŸãã¯.cljc
ã®ãã¡ã€ã«ãå«ãŸããŠãã
ãªãã·ã§ã³
ãªãã·ã§ã³ | ããã©ã«ã | 説æ |
---|---|---|
format |
'via [${symbol}(${version} )]($style)' |
module ã®ãã©ãŒãããã§ãã |
version_format |
'v${raw}' |
ããŒãžã§ã³ã®ãã©ãŒãããã 䜿çšå¯èœãªå€æ°ã¯raw ãmajor ãminor ãšpatch ã§ãã |
detect_extensions |
['java', 'class', 'gradle', 'jar', 'cljs', 'cljc'] |
ã©ã®æ¡åŒµåããã®ã¢ãžã¥ãŒã«ãã¢ã¯ãã£ãã«ããã |
detect_files |
['pom.xml', 'build.gradle.kts', 'build.sbt', '.java-version', 'deps.edn', 'project.clj', 'build.boot'] |
ã©ã®ãã¡ã€ã«åããã®ã¢ãžã¥ãŒã«ãã¢ã¯ãã£ãã«ããã |
detect_folders |
[] |
ã©ã®ãã©ã«ããŒããã®ã¢ãžã¥ãŒã«ãã¢ã¯ãã£ãã«ããã |
symbol |
'â ' |
A format string representing the symbol of Java |
style |
'red dimmed' |
ã¢ãžã¥ãŒã«ã®ã¹ã¿ã€ã«ã§ãã |
disabled |
false |
java ã¢ãžã¥ãŒã«ãç¡å¹ã«ããŸãã |
å€æ°
å€æ° | èšå®äŸ | 説æ |
---|---|---|
version | v14 |
The version of java |
symbol | ãªãã·ã§ã³ symbol ã®å€ããã©ãŒãã |
|
style* | ãªãã·ã§ã³ style ã®å€ããã©ãŒãã |
*: ãã®å€æ°ã¯ãã¹ã¿ã€ã«æååã®äžéšãšããŠã®ã¿äœ¿çšããããšãã§ããŸãã
èšå®äŸ
# ~/.config/starship.toml
[java]
symbol = 'ð '
ãžã§ã
jobs
ã¢ãžã¥ãŒã«ã«ã¯ãå®è¡äžã®ãžã§ãã®çŸåšã®æ°ã衚瀺ãããŸãã ãã®ã¢ãžã¥ãŒã«ã¯ãå®è¡äžã®ããã¯ã°ã©ãŠã³ããžã§ããããå Žåã«ã®ã¿è¡šç€ºãããŸãã The module will show the number of jobs running if there are at least 2 jobs, or more than the number_threshold
config value, if it exists. The module will show a symbol if there is at least 1 job, or more than the symbol_threshold
config value, if it exists. You can set both values to 0 in order to always show the symbol and number of jobs, even if there are 0 jobs running.
The default functionality is:
- 0 jobs -> Nothing is shown.
- 1 job ->
symbol
is shown. - 2 jobs or more ->
symbol
+number
are shown.
::: warning
This module is not supported on tcsh and nu.
:::
::: warning
The threshold
option is deprecated, but if you want to use it, the module will show the number of jobs running if there is more than 1 job, or more than the threshold
config value, if it exists. If threshold
is set to 0, then the module will also show when there are 0 jobs running.
:::
ãªãã·ã§ã³
ãªãã·ã§ã³ | ããã©ã«ã | 説æ |
---|---|---|
threshold * |
1 |
è¶ éããå Žåããžã§ãã®æ°ã衚瀺ããŸãã |
symbol_threshold |
1 |
Show symbol if the job count is at least symbol_threshold . |
number_threshold |
2 |
Show the number of jobs if the job count is at least number_threshold . |
format |
'[$symbol$number]($style) ' |
module ã®ãã©ãŒãããã§ãã |
symbol |
'âŠ' |
The string used to represent the symbol variable. |
style |
'bold blue' |
ã¢ãžã¥ãŒã«ã®ã¹ã¿ã€ã«ã§ãã |
disabled |
false |
jobs ã¢ãžã¥ãŒã«ãç¡å¹ã«ããŸãã |
*: This option is deprecated, please use the number_threshold
and symbol_threshold
options instead.
å€æ°
å€æ° | èšå®äŸ | 説æ |
---|---|---|
number | 1 |
ãžã§ãã®æ° |
symbol | ãªãã·ã§ã³ symbol ã®å€ããã©ãŒãã |
|
style* | ãªãã·ã§ã³ style ã®å€ããã©ãŒãã |
*: ãã®å€æ°ã¯ãã¹ã¿ã€ã«æååã®äžéšãšããŠã®ã¿äœ¿çšããããšãã§ããŸãã
èšå®äŸ
# ~/.config/starship.toml
[jobs]
symbol = '+ '
number_threshold = 4
symbol_threshold = 0
Julia
julia
ã¢ãžã¥ãŒã«ã¯ãçŸåšã€ã³ã¹ããŒã«ãããŠããJuliaã®ããŒãžã§ã³ã衚瀺ããŸãã ããã©ã«ãã§ã¯æ¬¡ã®æ¡ä»¶ã®ãããããæºãããããšãã¢ãžã¥ãŒã«ã衚瀺ãããŸãã
- ã«ã¬ã³ããã£ã¬ã¯ããªã«
Project.toml
ãã¡ã€ã«ãå«ãŸããŠãã - ã«ã¬ã³ããã£ã¬ã¯ããªã«
Manifest.toml
ãã¡ã€ã«ãå«ãŸããŠãã - ã«ã¬ã³ããã£ã¬ã¯ããªã«
.jl
ã®æ¡åŒµåã®ãã¡ã€ã«ãå«ãŸããŠãã
ãªãã·ã§ã³
ãªãã·ã§ã³ | ããã©ã«ã | 説æ |
---|---|---|
format |
'via [$symbol($version )]($style)' |
module ã®ãã©ãŒãããã§ãã |
version_format |
'v${raw}' |
ããŒãžã§ã³ã®ãã©ãŒãããã 䜿çšå¯èœãªå€æ°ã¯raw ãmajor ãminor ãšpatch ã§ãã |
detect_extensions |
['jl'] |
ã©ã®æ¡åŒµåããã®ã¢ãžã¥ãŒã«ãã¢ã¯ãã£ãã«ããã |
detect_files |
['Project.toml', 'Manifest.toml'] |
ã©ã®ãã¡ã€ã«åããã®ã¢ãžã¥ãŒã«ãã¢ã¯ãã£ãã«ããã |
detect_folders |
[] |
ã©ã®ãã©ã«ããŒããã®ã¢ãžã¥ãŒã«ãã¢ã¯ãã£ãã«ããã |
symbol |
'à® ' |
Juliaã®ã·ã³ãã«ãè¡šããã©ãŒãããæåå |
style |
'bold purple' |
ã¢ãžã¥ãŒã«ã®ã¹ã¿ã€ã«ã§ãã |
disabled |
false |
julia ã¢ãžã¥ãŒã«ãç¡å¹ã«ããŸãã |
å€æ°
å€æ° | èšå®äŸ | 説æ |
---|---|---|
version | v1.4.0 |
julia ã®ããŒãžã§ã³ |
symbol | ãªãã·ã§ã³ symbol ã®å€ããã©ãŒãã |
|
style* | ãªãã·ã§ã³ style ã®å€ããã©ãŒãã |
*: ãã®å€æ°ã¯ãã¹ã¿ã€ã«æååã®äžéšãšããŠã®ã¿äœ¿çšããããšãã§ããŸãã
èšå®äŸ
# ~/.config/starship.toml
[julia]
symbol = '⎠'
Kotlin
kotlin
ã¢ãžã¥ãŒã«ã¯ãçŸåšã€ã³ã¹ããŒã«ãããŠããKotlinã®ããŒãžã§ã³ã衚瀺ããŸãã ããã©ã«ãã§ã¯æ¬¡ã®æ¡ä»¶ã®ãããããæºãããããšãã¢ãžã¥ãŒã«ã衚瀺ãããŸãã
- ã«ã¬ã³ããã£ã¬ã¯ããªã«
.kt
ãããã¯.kts
ãã¡ã€ã«ãå«ãŸããŠãã
ãªãã·ã§ã³
ãªãã·ã§ã³ | ããã©ã«ã | 説æ |
---|---|---|
format |
'via [$symbol($version )]($style)' |
module ã®ãã©ãŒãããã§ãã |
version_format |
'v${raw}' |
ããŒãžã§ã³ã®ãã©ãŒãããã 䜿çšå¯èœãªå€æ°ã¯raw ãmajor ãminor ãšpatch ã§ãã |
detect_extensions |
['kt', 'kts'] |
ã©ã®æ¡åŒµåããã®ã¢ãžã¥ãŒã«ãã¢ã¯ãã£ãã«ããã |
detect_files |
[] |
ã©ã®ãã¡ã€ã«åããã®ã¢ãžã¥ãŒã«ãã¢ã¯ãã£ãã«ããã |
detect_folders |
[] |
ã©ã®ãã©ã«ããŒããã®ã¢ãžã¥ãŒã«ãã¢ã¯ãã£ãã«ããã |
symbol |
'ð
º ' |
Kotlinã®ã·ã³ãã«ãè¡šããã©ãŒãããæåå |
style |
'bold blue' |
ã¢ãžã¥ãŒã«ã®ã¹ã¿ã€ã«ã§ãã |
kotlin_binary |
'kotlin' |
StarshipãããŒãžã§ã³ãååŸãããšãã«å®è¡ããkotlinãã€ããªãèšå®ããŸãã |
disabled |
false |
kotlin ã¢ãžã¥ãŒã«ãç¡å¹ã«ããŸãã |
å€æ°
å€æ° | èšå®äŸ | 説æ |
---|---|---|
version | v1.4.21 |
kotlin ã®ããŒãžã§ã³ |
symbol | ãªãã·ã§ã³ symbol ã®å€ããã©ãŒãã |
|
style* | ãªãã·ã§ã³ style ã®å€ããã©ãŒãã |
*: ãã®å€æ°ã¯ãã¹ã¿ã€ã«æååã®äžéšãšããŠã®ã¿äœ¿çšããããšãã§ããŸãã
èšå®äŸ
# ~/.config/starship.toml
[kotlin]
symbol = 'ð
º '
# ~/.config/starship.toml
[kotlin]
# Uses the Kotlin Compiler binary to get the installed version
kotlin_binary = 'kotlinc'
Kubernetes
Displays the current Kubernetes context name and, if set, the namespace, user and cluster from the kubeconfig file. The namespace needs to be set in the kubeconfig file, this can be done via kubectl config set-context starship-context --namespace astronaut
. Similarly the user and cluster can be set with kubectl config set-context starship-context --user starship-user
and kubectl config set-context starship-context --cluster starship-cluster
. ç°å¢å€æ°$KUBECONFIG
ãèšå®ãããŠããå Žåããã®ã¢ãžã¥ãŒã«ã¯ãããå©çšãã~/.kube/config
ãå©çšããŸããã
::: tip
ãã®ã¢ãžã¥ãŒã«ã¯ããã©ã«ãã§ç¡å¹ã«ãªã£ãŠããŸãã æå¹ã«ããã«ã¯ãèšå®ãã¡ã€ã«ã§ disabled
ã false
ã«èšå®ããŸãã
When the module is enabled it will always be active, unless any of detect_extensions
, detect_files
or detect_folders
have been set in which case the module will only be active in directories that match those conditions.
:::
ãªãã·ã§ã³
ãªãã·ã§ã³ | ããã©ã«ã | 説æ |
---|---|---|
symbol |
'âž ' |
ã¯ã©ã¹ã¿ãŒåã®åã«è¡šç€ºãããã·ã³ãã«ãè¡šããã©ãŒãããæååã |
format |
'[$symbol$context( \($namespace\))]($style) in ' |
module ã®ãã©ãŒãããã§ãã |
style |
'cyan bold' |
ã¢ãžã¥ãŒã«ã®ã¹ã¿ã€ã«ã§ãã |
context_aliases |
{} |
ã³ã³ããã¹ãã®è¡šç€ºãšã€ãªã¢ã¹ãå®çŸ©ããããŒãã«ã |
user_aliases |
{} |
Table of user aliases to display. |
detect_extensions |
[] |
ã©ã®æ¡åŒµåããã®ã¢ãžã¥ãŒã«ãã¢ã¯ãã£ãã«ããã |
detect_files |
[] |
ã©ã®ãã¡ã€ã«åããã®ã¢ãžã¥ãŒã«ãã¢ã¯ãã£ãã«ããã |
detect_folders |
[] |
ã©ã®ãã©ã«ããŒããã®ã¢ãžã¥ãŒã«ãã¢ã¯ãã£ãã«ããã |
disabled |
true |
kubernetes ã¢ãžã¥ãŒã«ãç¡å¹ã«ããã |
å€æ°
å€æ° | èšå®äŸ | 説æ |
---|---|---|
context | starship-context |
The current kubernetes context name |
namespace | starship-namespace |
èšå®ãããŠããå ŽåãçŸåšã® Kubernetes ã® namespace å |
user | starship-user |
If set, the current kubernetes user |
cluster | starship-cluster |
If set, the current kubernetes cluster |
symbol | ãªãã·ã§ã³ symbol ã®å€ããã©ãŒãã |
|
style* | ãªãã·ã§ã³ style ã®å€ããã©ãŒãã |
*: ãã®å€æ°ã¯ãã¹ã¿ã€ã«æååã®äžéšãšããŠã®ã¿äœ¿çšããããšãã§ããŸãã
èšå®äŸ
# ~/.config/starship.toml
[kubernetes]
format = 'on [âµ ($user on )($cluster in )$context \($namespace\)](dimmed green) '
disabled = false
[kubernetes.context_aliases]
'dev.local.cluster.k8s' = 'dev'
'.*/openshift-cluster/.*' = 'openshift'
'gke_.*_(?P<var_cluster>[\\w-]+)' = 'gke-$var_cluster'
[kubernetes.user_aliases]
'dev.local.cluster.k8s' = 'dev'
'root/.*' = 'root'
Only show the module in directories that contain a k8s
file.
# ~/.config/starship.toml
[kubernetes]
disabled = false
detect_files = ['k8s']
Regex Matching
Additional to simple aliasing, context_aliases
and user_aliases
also supports extended matching and renaming using regular expressions.
The regular expression must match on the entire kube context, capture groups can be referenced using $name
and $N
in the replacement. This is more explained in the regex crate documentation.
Long and automatically generated cluster names can be identified and shortened using regular expressions:
[kubernetes.context_aliases]
# OpenShift contexts carry the namespace and user in the kube context: `namespace/name/user`:
'.*/openshift-cluster/.*' = 'openshift'
# Or better, to rename every OpenShift cluster at once:
'.*/(?P<var_cluster>[\\w-]+)/.*' = '$var_cluster'
# Contexts from GKE, AWS and other cloud providers usually carry additional information, like the region/zone.
# The following entry matches on the GKE format (`gke_projectname_zone_cluster-name`)
# and renames every matching kube context into a more readable format (`gke-cluster-name`):
'gke_.*_(?P<var_cluster>[\\w-]+)' = 'gke-$var_cluster'
Line Break
line_break
ã¢ãžã¥ãŒã«ã¯ãããã³ããã2è¡ã«åå²ããŸãã
ãªãã·ã§ã³
ãªãã·ã§ã³ | ããã©ã«ã | 説æ |
---|---|---|
disabled |
false |
line_break ã¢ãžã¥ãŒã«ãç¡å¹ã«ããŠãããã³ããã1è¡ã«ããŸãã |
èšå®äŸ
# ~/.config/starship.toml
[line_break]
disabled = true
ããŒã«ã«IP
localip
ã¢ãžã¥ãŒã«ã¯ããã©ã€ããªãããã¯ãŒã¯ã€ã³ã¿ãŒãã§ã€ã¹ã®IPv4ã¢ãã¬ã¹ã衚瀺ããŸãã
ãªãã·ã§ã³
ãªãã·ã§ã³ | ããã©ã«ã | 説æ |
---|---|---|
ssh_only |
true |
SSHã»ãã·ã§ã³ã«æ¥ç¶ãããŠããå Žåã«ã®ã¿ãIPã¢ãã¬ã¹ã衚瀺ããŸãã |
format |
'[$localipv4]($style) ' |
module ã®ãã©ãŒãããã§ãã |
style |
'bold yellow' |
ã¢ãžã¥ãŒã«ã®ã¹ã¿ã€ã«ã§ãã |
disabled |
true |
localip ã¢ãžã¥ãŒã«ãç¡å¹ã«ããŸãã |
å€æ°
å€æ° | èšå®äŸ | 説æ |
---|---|---|
localipv4 | 192.168.1.13 | ãã©ã€ããªIPv4ã¢ãã¬ã¹ãå«ãŸããŠããŸã |
style* | ãªãã·ã§ã³ style ã®å€ããã©ãŒãã |
*: ãã®å€æ°ã¯ãã¹ã¿ã€ã«æååã®äžéšãšããŠã®ã¿äœ¿çšããããšãã§ããŸãã
èšå®äŸ
# ~/.config/starship.toml
[localip]
ssh_only = false
format = '@[$localipv4](bold red) '
disabled = false
Lua
lua
ã¢ãžã¥ãŒã«ã¯ãçŸåšã€ã³ã¹ããŒã«ãããŠããLua ã®ããŒãžã§ã³ã衚瀺ããŸãã ããã©ã«ãã§ã¯æ¬¡ã®æ¡ä»¶ã®ãããããæºãããããšãã¢ãžã¥ãŒã«ã衚瀺ãããŸãã
- ã«ã¬ã³ããã£ã¬ã¯ããªã«
.lua-version
ãã¡ã€ã«ãå«ãŸããŠãã - ã«ã¬ã³ããã£ã¬ã¯ããªã«
lua
ãã£ã¬ã¯ããªãå«ãŸããŠãã - ã«ã¬ã³ããã£ã¬ã¯ããªã«
.lua
ã®æ¡åŒµåã®ãã¡ã€ã«ãå«ãŸããŠãã
ãªãã·ã§ã³
ãªãã·ã§ã³ | ããã©ã«ã | 説æ |
---|---|---|
format |
'via [$symbol($version )]($style)' |
module ã®ãã©ãŒãããã§ãã |
version_format |
'v${raw}' |
ããŒãžã§ã³ã®ãã©ãŒãããã 䜿çšå¯èœãªå€æ°ã¯raw ãmajor ãminor ãšpatch ã§ãã |
symbol |
'ð ' |
Luaã®ã·ã³ãã«ãè¡šããã©ãŒãããæåå |
detect_extensions |
['lua'] |
ã©ã®æ¡åŒµåããã®ã¢ãžã¥ãŒã«ãã¢ã¯ãã£ãã«ããã |
detect_files |
['.lua-version'] |
ã©ã®ãã¡ã€ã«åããã®ã¢ãžã¥ãŒã«ãã¢ã¯ãã£ãã«ããã |
detect_folders |
['lua'] |
ã©ã®ãã©ã«ããŒããã®ã¢ãžã¥ãŒã«ãã¢ã¯ãã£ãã«ããã |
style |
'bold blue' |
ã¢ãžã¥ãŒã«ã®ã¹ã¿ã€ã«ã§ãã |
lua_binary |
'lua' |
StarshipãããŒãžã§ã³ãååŸãããšãã«å®è¡ããLuaãã€ããªãèšå®ããŸãã |
disabled |
false |
lua ã¢ãžã¥ãŒã«ãç¡å¹ã«ããŸãã |
å€æ°
å€æ° | èšå®äŸ | 説æ |
---|---|---|
version | v5.4.0 |
lua ã®ããŒãžã§ã³ |
symbol | ãªãã·ã§ã³ symbol ã®å€ããã©ãŒãã |
|
style* | ãªãã·ã§ã³ style ã®å€ããã©ãŒãã |
*: ãã®å€æ°ã¯ãã¹ã¿ã€ã«æååã®äžéšãšããŠã®ã¿äœ¿çšããããšãã§ããŸãã
èšå®äŸ
# ~/.config/starship.toml
[lua]
format = 'via [ð $version](bold blue) '
ã¡ã¢ãªäœ¿çšé
memory_usage
ã¢ãžã¥ãŒã«ã¯ãçŸåšã®ã·ã¹ãã ã¡ã¢ãªãšã¹ã¯ãã䜿çšéã瀺ããŸãã
ããã©ã«ãã§ã¯ãã·ã¹ãã ã¹ã¯ããã®åèšããŒã以å€ã®å Žåãã¹ã¯ãã䜿çšéã衚瀺ãããŸãã
::: tip
ãã®ã¢ãžã¥ãŒã«ã¯ããã©ã«ãã§ç¡å¹ã«ãªã£ãŠããŸãã æå¹ã«ããã«ã¯ãèšå®ãã¡ã€ã«ã§ disabled
ã false
ã«èšå®ããŸãã
:::
ãªãã·ã§ã³
ãªãã·ã§ã³ | ããã©ã«ã | 説æ |
---|---|---|
threshold |
75 |
ãã®éŸå€ãè¶ ããªãéããã¡ã¢ãªäœ¿çšçã¯è¡šç€ºãããŸããã |
format |
'via $symbol [${ram}( | ${swap})]($style) ' |
module ã®ãã©ãŒãããã§ãã |
symbol |
'ð' |
ã¡ã¢ãªäœ¿çšçã衚瀺ããåã«äœ¿çšãããèšå·ã§ãã |
style |
'bold dimmed white' |
ã¢ãžã¥ãŒã«ã®ã¹ã¿ã€ã«ã§ãã |
disabled |
true |
memory_usage ã¢ãžã¥ãŒã«ãç¡å¹ã«ããŸãã |
å€æ°
å€æ° | èšå®äŸ | 説æ |
---|---|---|
ram | 31GiB/65GiB |
The usage/total RAM of the current system memory. |
ram_pct | 48% |
The percentage of the current system memory. |
swap** | 1GiB/4GiB |
The swap memory size of the current system swap memory file. |
swap_pct** | 77% |
The swap memory percentage of the current system swap memory file. |
symbol | ð |
ãªãã·ã§ã³ symbol ã®å€ããã©ãŒãã |
style* | ãªãã·ã§ã³ style ã®å€ããã©ãŒãã |
*: This variable can only be used as a part of a style string **: The SWAP file information is only displayed if detected on the current system
èšå®äŸ
# ~/.config/starship.toml
[memory_usage]
disabled = false
threshold = -1
symbol = ' '
style = 'bold dimmed green'
Meson
The meson
module shows the current Meson developer environment status.
By default the Meson project name is displayed, if $MESON_DEVENV
is set.
ãªãã·ã§ã³
ãªãã·ã§ã³ | ããã©ã«ã | 説æ |
---|---|---|
truncation_length |
2^32 - 1 |
Truncates a project name to N graphemes. |
truncation_symbol |
'âŠ' |
The symbol used to indicate a project name was truncated. You can use '' for no symbol. |
format |
'via [$symbol$project]($style) ' |
module ã®ãã©ãŒãããã§ãã |
symbol |
'⬢ ' |
The symbol used before displaying the project name. |
style |
'blue bold' |
ã¢ãžã¥ãŒã«ã®ã¹ã¿ã€ã«ã§ãã |
disabled |
false |
Disables the meson module. |
å€æ°
å€æ° | èšå®äŸ | 説æ |
---|---|---|
project | starship |
The current Meson project name |
symbol | ð |
ãªãã·ã§ã³ symbol ã®å€ããã©ãŒãã |
style* | ãªãã·ã§ã³ style ã®å€ããã©ãŒãã |
*: ãã®å€æ°ã¯ãã¹ã¿ã€ã«æååã®äžéšãšããŠã®ã¿äœ¿çšããããšãã§ããŸãã
èšå®äŸ
# ~/.config/starship.toml
[meson]
disabled = false
truncation_symbol = '--'
symbol = ' '
style = 'bold dimmed green'
Mercurial Branch
hg_branch
ã¢ãžã¥ãŒã«ã¯ãçŸåšã®ãã£ã¬ã¯ããªã«ãããªããžããªã®ã¢ã¯ãã£ããªãã©ã³ãã瀺ããŸãã
ãªãã·ã§ã³
ãªãã·ã§ã³ | ããã©ã«ã | 説æ |
---|---|---|
symbol |
'î ' |
The symbol used before the hg bookmark or branch name of the repo in your current directory. |
style |
'bold purple' |
ã¢ãžã¥ãŒã«ã®ã¹ã¿ã€ã«ã§ãã |
format |
'on [$symbol$branch]($style) ' |
module ã®ãã©ãŒãããã§ãã |
truncation_length |
2^63 - 1 |
Truncates the hg branch name to N graphemes |
truncation_symbol |
'âŠ' |
ãã©ã³ãååãæšãŠãããŠããããšã瀺ãããã®èšå·ã§ãã |
disabled |
true |
Disables the hg_branch module. |
å€æ°
å€æ° | èšå®äŸ | 説æ |
---|---|---|
branch | master |
The active mercurial branch |
symbol | ãªãã·ã§ã³ symbol ã®å€ããã©ãŒãã |
|
style* | ãªãã·ã§ã³ style ã®å€ããã©ãŒãã |
*: ãã®å€æ°ã¯ãã¹ã¿ã€ã«æååã®äžéšãšããŠã®ã¿äœ¿çšããããšãã§ããŸãã
èšå®äŸ
# ~/.config/starship.toml
[hg_branch]
format = 'on [ð± $branch](bold purple)'
truncation_length = 4
truncation_symbol = ''
Nim
nim
ã¢ãžã¥ãŒã«ã¯ãçŸåšã€ã³ã¹ããŒã«ãããŠããNimã®ããŒãžã§ã³ã衚瀺ããŸãã ããã©ã«ãã§ã¯æ¬¡ã®æ¡ä»¶ã®ãããããæºãããããšãã¢ãžã¥ãŒã«ã衚瀺ãããŸãã
- ã«ã¬ã³ããã£ã¬ã¯ããªã«
nim.cfg
ãã¡ã€ã«ãå«ãŸããŠãã - ã«ã¬ã³ããã£ã¬ã¯ããªã«æ¡åŒµåã
.nim
ã®ãã¡ã€ã«ãå«ãŸããŠãã - ã«ã¬ã³ããã£ã¬ã¯ããªã«æ¡åŒµåã
.nims
ã®ãã¡ã€ã«ãå«ãŸããŠãã - ã«ã¬ã³ããã£ã¬ã¯ããªã«æ¡åŒµåã
.nimble
ã®ãã¡ã€ã«ãå«ãŸããŠãã
ãªãã·ã§ã³
ãªãã·ã§ã³ | ããã©ã«ã | 説æ |
---|---|---|
format |
'via [$symbol($version )]($style)' |
The format for the module |
version_format |
'v${raw}' |
ããŒãžã§ã³ã®ãã©ãŒãããã 䜿çšå¯èœãªå€æ°ã¯raw ãmajor ãminor ãšpatch ã§ãã |
symbol |
'ð ' |
The symbol used before displaying the version of Nim. |
detect_extensions |
['nim', 'nims', 'nimble'] |
ã©ã®æ¡åŒµåããã®ã¢ãžã¥ãŒã«ãã¢ã¯ãã£ãã«ããã |
detect_files |
['nim.cfg'] |
ã©ã®ãã¡ã€ã«åããã®ã¢ãžã¥ãŒã«ãã¢ã¯ãã£ãã«ããã |
detect_folders |
[] |
ã©ã®ãã©ã«ããŒããã®ã¢ãžã¥ãŒã«ãã¢ã¯ãã£ãã«ããã |
style |
'bold yellow' |
ã¢ãžã¥ãŒã«ã®ã¹ã¿ã€ã«ã§ãã |
disabled |
false |
Disables the nim module. |
å€æ°
å€æ° | èšå®äŸ | 説æ |
---|---|---|
version | v1.2.0 |
The version of nimc |
symbol | ãªãã·ã§ã³ symbol ã®å€ããã©ãŒãã |
|
style* | ãªãã·ã§ã³ style ã®å€ããã©ãŒãã |
*: ãã®å€æ°ã¯ãã¹ã¿ã€ã«æååã®äžéšãšããŠã®ã¿äœ¿çšããããšãã§ããŸãã
èšå®äŸ
# ~/.config/starship.toml
[nim]
style = 'yellow'
symbol = 'ð£ '
Nix-shell
nix_shell
ã¢ãžã¥ãŒã«ã¯nix-shellç°å¢ã衚瀺ããŸãã ãã®ã¢ãžã¥ãŒã«ã¯ãnixã·ã§ã«ç°å¢å
ã«ãããšãã«è¡šç€ºãããŸãã
ãªãã·ã§ã³
ãªãã·ã§ã³ | ããã©ã«ã | 説æ |
---|---|---|
format |
'via [$symbol$state( \($name\))]($style) ' |
module ã®ãã©ãŒãããã§ãã |
symbol |
'âïž ' |
A format string representing the symbol of nix-shell. |
style |
'bold blue' |
ã¢ãžã¥ãŒã«ã®ã¹ã¿ã€ã«ã§ãã |
impure_msg |
'impure' |
A format string shown when the shell is impure. |
pure_msg |
'pure' |
A format string shown when the shell is pure. |
disabled |
false |
nix_shell ã¢ãžã¥ãŒã«ãç¡å¹ã«ããŸãã |
å€æ°
å€æ° | èšå®äŸ | 説æ |
---|---|---|
state | pure |
The state of the nix-shell |
name | lorri |
The name of the nix-shell |
symbol | ãªãã·ã§ã³ symbol ã®å€ããã©ãŒãã |
|
style* | ãªãã·ã§ã³ style ã®å€ããã©ãŒãã |
*: ãã®å€æ°ã¯ãã¹ã¿ã€ã«æååã®äžéšãšããŠã®ã¿äœ¿çšããããšãã§ããŸãã
èšå®äŸ
# ~/.config/starship.toml
[nix_shell]
disabled = true
impure_msg = '[impure shell](bold red)'
pure_msg = '[pure shell](bold green)'
format = 'via [âïž $state( \($name\))](bold blue) '
Node.js
nodejs
ã¢ãžã¥ãŒã«ã¯ãçŸåšã€ã³ã¹ããŒã«ãããŠããNode.jsã®ããŒãžã§ã³ã衚瀺ããŸãã ããã©ã«ãã§ã¯æ¬¡ã®æ¡ä»¶ã®ãããããæºãããããšãã¢ãžã¥ãŒã«ã衚瀺ãããŸãã
- ã«ã¬ã³ããã£ã¬ã¯ããªã«
package.json
ãã¡ã€ã«ãå«ãŸããŠãã - ã«ã¬ã³ããã£ã¬ã¯ããªã«
.node-version
ãã¡ã€ã«ãå«ãŸããŠãã - ã«ã¬ã³ããã£ã¬ã¯ããªã«
.nvmrc
ãã¡ã€ã«ãå«ãŸããŠãã - ã«ã¬ã³ããã£ã¬ã¯ããªã«
node_modules
ãã£ã¬ã¯ããªãå«ãŸããŠãã - ã«ã¬ã³ããã£ã¬ã¯ããªã«æ¡åŒµåã
.js
ã.mjs
ãŸãã¯.cjs
ã®ãã¡ã€ã«ãå«ãŸããŠãã - ã«ã¬ã³ããã£ã¬ã¯ããªã«æ¡åŒµåã
.ts
ã.mts
ãŸãã¯.cts
ã®ãã¡ã€ã«ãå«ãŸããŠãã
ãªãã·ã§ã³
ãªãã·ã§ã³ | ããã©ã«ã | 説æ |
---|---|---|
format |
'via [$symbol($version )]($style)' |
module ã®ãã©ãŒãããã§ãã |
version_format |
'v${raw}' |
ããŒãžã§ã³ã®ãã©ãŒãããã 䜿çšå¯èœãªå€æ°ã¯raw ãmajor ãminor ãšpatch ã§ãã |
symbol |
'î ' |
A format string representing the symbol of Node.js. |
detect_extensions |
['js', 'mjs', 'cjs', 'ts', 'mts', 'cts'] |
ã©ã®æ¡åŒµåããã®ã¢ãžã¥ãŒã«ãã¢ã¯ãã£ãã«ããã |
detect_files |
['package.json', '.node-version'] |
ã©ã®ãã¡ã€ã«åããã®ã¢ãžã¥ãŒã«ãã¢ã¯ãã£ãã«ããã |
detect_folders |
['node_modules'] |
ã©ã®ãã©ã«ããŒããã®ã¢ãžã¥ãŒã«ãã¢ã¯ãã£ãã«ããã |
style |
'bold green' |
ã¢ãžã¥ãŒã«ã®ã¹ã¿ã€ã«ã§ãã |
disabled |
false |
nodejs ã¢ãžã¥ãŒã«ãç¡å¹ã«ããŸãã |
not_capable_style |
bold red |
The style for the module when an engines property in package.json does not match the Node.js version. |
å€æ°
å€æ° | èšå®äŸ | 説æ |
---|---|---|
version | v13.12.0 |
The version of node |
symbol | ãªãã·ã§ã³ symbol ã®å€ããã©ãŒãã |
|
style* | ãªãã·ã§ã³ style ã®å€ããã©ãŒãã |
*: ãã®å€æ°ã¯ãã¹ã¿ã€ã«æååã®äžéšãšããŠã®ã¿äœ¿çšããããšãã§ããŸãã
èšå®äŸ
# ~/.config/starship.toml
[nodejs]
format = 'via [ð€ $version](bold green) '
OCaml
ocaml
ã¢ãžã¥ãŒã«ã¯ãçŸåšã€ã³ã¹ããŒã«ãããŠããOCamlã®ããŒãžã§ã³ã衚瀺ããŸãã ããã©ã«ãã§ã¯æ¬¡ã®æ¡ä»¶ã®ãããããæºãããããšãã¢ãžã¥ãŒã«ã衚瀺ãããŸãã
- ã«ã¬ã³ããã£ã¬ã¯ããªã«æ¡åŒµå
.opam
ã®ãã¡ã€ã«ãŸãã¯_opam
ãã£ã¬ã¯ããªãå«ãŸããŠãã - ã«ã¬ã³ããã£ã¬ã¯ããªã«
esy.lock
ãã£ã¬ã¯ããªãå«ãŸããŠãã - ã«ã¬ã³ããã£ã¬ã¯ããªã«
dune
ãŸãã¯dune-project
ãã¡ã€ã«ãå«ãŸããŠãã - ã«ã¬ã³ããã£ã¬ã¯ããªã«
jbuild
ãŸãã¯jbuild-ignore
ãã¡ã€ã«ãå«ãŸããŠãã - ã«ã¬ã³ããã£ã¬ã¯ããªã«
.merlin
ãã¡ã€ã«ãå«ãŸããŠãã - ã«ã¬ã³ããã£ã¬ã¯ããªã«æ¡åŒµåã
.ml
ã.mli
ã.re
ãŸãã¯.rei
ã®ãã¡ã€ã«ãå«ãŸããŠãã
ãªãã·ã§ã³
ãªãã·ã§ã³ | ããã©ã«ã | 説æ |
---|---|---|
format |
'via [$symbol($version )(\($switch_indicator$switch_name\) )]($style)' |
ã¢ãžã¥ãŒã«ã®ãã©ãŒãããæååã |
version_format |
'v${raw}' |
ããŒãžã§ã³ã®ãã©ãŒãããã 䜿çšå¯èœãªå€æ°ã¯raw ãmajor ãminor ãšpatch ã§ãã |
symbol |
'ð« ' |
The symbol used before displaying the version of OCaml. |
global_switch_indicator |
'' |
The format string used to represent global OPAM switch. |
local_switch_indicator |
'*' |
The format string used to represent local OPAM switch. |
detect_extensions |
['opam', 'ml', 'mli', 're', 'rei'] |
ã©ã®æ¡åŒµåããã®ã¢ãžã¥ãŒã«ãã¢ã¯ãã£ãã«ããã |
detect_files |
['dune', 'dune-project', 'jbuild', 'jbuild-ignore', '.merlin'] |
ã©ã®ãã¡ã€ã«åããã®ã¢ãžã¥ãŒã«ãã¢ã¯ãã£ãã«ããã |
detect_folders |
['_opam', 'esy.lock'] |
ã©ã®ãã©ã«ããŒããã®ã¢ãžã¥ãŒã«ãã¢ã¯ãã£ãã«ããã |
style |
'bold yellow' |
ã¢ãžã¥ãŒã«ã®ã¹ã¿ã€ã«ã§ãã |
disabled |
false |
Disables the ocaml module. |
å€æ°
å€æ° | èšå®äŸ | 説æ |
---|---|---|
version | v4.10.0 |
The version of ocaml |
switch_name | my-project |
The active OPAM switch |
switch_indicator | Mirrors the value of indicator for currently active OPAM switch |
|
symbol | ãªãã·ã§ã³ symbol ã®å€ããã©ãŒãã |
|
style* | ãªãã·ã§ã³ style ã®å€ããã©ãŒãã |
*: ãã®å€æ°ã¯ãã¹ã¿ã€ã«æååã®äžéšãšããŠã®ã¿äœ¿çšããããšãã§ããŸãã
èšå®äŸ
# ~/.config/starship.toml
[ocaml]
format = 'via [ðª $version]($style) '
Open Policy Agent
The opa
module shows the currently installed version of the OPA tool. By default the module will be shown if the current directory contains a .rego
file.
ãªãã·ã§ã³
ãªãã·ã§ã³ | ããã©ã«ã | 説æ |
---|---|---|
format |
'via [$symbol($version )]($style)' |
module ã®ãã©ãŒãããã§ãã |
version_format |
'v${raw}' |
ããŒãžã§ã³ã®ãã©ãŒãããã 䜿çšå¯èœãªå€æ°ã¯raw ãmajor ãminor ãšpatch ã§ãã |
symbol |
'ðª ' |
A format string representing the symbol of OPA. |
detect_extensions |
['rego'] |
ã©ã®æ¡åŒµåããã®ã¢ãžã¥ãŒã«ãã¢ã¯ãã£ãã«ããã |
detect_files |
[] |
ã©ã®ãã¡ã€ã«åããã®ã¢ãžã¥ãŒã«ãã¢ã¯ãã£ãã«ããã |
detect_folders |
[] |
ã©ã®ãã©ã«ããŒããã®ã¢ãžã¥ãŒã«ãã¢ã¯ãã£ãã«ããã |
style |
'bold blue' |
ã¢ãžã¥ãŒã«ã®ã¹ã¿ã€ã«ã§ãã |
disabled |
false |
Disables the opa module. |
å€æ°
å€æ° | èšå®äŸ | 説æ |
---|---|---|
version | v0.44.0 |
The version of opa |
symbol | ãªãã·ã§ã³ symbol ã®å€ããã©ãŒãã |
|
style* | ãªãã·ã§ã³ style ã®å€ããã©ãŒãã |
*: ãã®å€æ°ã¯ãã¹ã¿ã€ã«æååã®äžéšãšããŠã®ã¿äœ¿çšããããšãã§ããŸãã
èšå®äŸ
# ~/.config/starship.toml
[opa]
format = 'via [âïž $version](bold red) '
OpenStack
The openstack
module shows the current OpenStack cloud and project. The module only active when the OS_CLOUD
env var is set, in which case it will read clouds.yaml
file from any of the default locations. to fetch the current project in use.
ãªãã·ã§ã³
ãªãã·ã§ã³ | ããã©ã«ã | 説æ |
---|---|---|
format |
'on [$symbol$cloud(\($project\))]($style) ' |
module ã®ãã©ãŒãããã§ãã |
symbol |
'âïž ' |
The symbol used before displaying the current OpenStack cloud. |
style |
'bold yellow' |
ã¢ãžã¥ãŒã«ã®ã¹ã¿ã€ã«ã§ãã |
disabled |
false |
Disables the openstack module. |
å€æ°
å€æ° | èšå®äŸ | 説æ |
---|---|---|
cloud | corp |
The current OpenStack cloud |
project | dev |
The current OpenStack project |
symbol | ãªãã·ã§ã³ symbol ã®å€ããã©ãŒãã |
|
style* | ãªãã·ã§ã³ style ã®å€ããã©ãŒãã |
*: ãã®å€æ°ã¯ãã¹ã¿ã€ã«æååã®äžéšãšããŠã®ã¿äœ¿çšããããšãã§ããŸãã
èšå®äŸ
# ~/.config/starship.toml
[openstack]
format = 'on [$symbol$cloud(\($project\))]($style) '
style = 'bold yellow'
symbol = 'âïž '
OS
The os
module shows the current operating system. OS information is detected via the os_info crate.
::: warning
The os_info crate used by this module is known to be inaccurate on some systems.
:::
::: tip
ãã®ã¢ãžã¥ãŒã«ã¯ããã©ã«ãã§ç¡å¹ã«ãªã£ãŠããŸãã æå¹ã«ããã«ã¯ãèšå®ãã¡ã€ã«ã§ disabled
ã false
ã«èšå®ããŸãã
:::
ãªãã·ã§ã³
ãªãã·ã§ã³ | ããã©ã«ã | 説æ |
---|---|---|
format |
"[$symbol]($style)" |
module ã®ãã©ãŒãããã§ãã |
style |
"bold white" |
ã¢ãžã¥ãŒã«ã®ã¹ã¿ã€ã«ã§ãã |
disabled |
true |
Disables the os module. |
symbols |
A table that maps each operating system to its symbol. |
symbols
allows you to define arbitrary symbols to display for each operating system type. Operating system types not defined by your configuration use the default symbols table below. All operating systems currently supported by the module are listed below. If you would like an operating system to be added, feel free to open a feature request.
# This is the default symbols table.
[os.symbols]
Alpine = "ðïž "
Amazon = "ð "
Android = "ð€ "
Arch = "ðïž "
CentOS = "ð "
Debian = "ð "
DragonFly = "ð "
Emscripten = "ð "
EndeavourOS = "ð "
Fedora = "ð© "
FreeBSD = "ð "
Garuda = "ðŠ
"
Gentoo = "ðïž "
HardenedBSD = "ð¡ïž "
Illumos = "ðŠ "
Linux = "ð§ "
Macos = "ð "
Manjaro = "ð¥ "
Mariner = "ð "
MidnightBSD = "ð "
Mint = "ð¿ "
NetBSD = "ð© "
NixOS = "âïž "
OpenBSD = "ð¡ "
openSUSE = "ðŠ "
OracleLinux = "ðŠŽ "
Pop = "ð "
Raspbian = "ð "
Redhat = "ð© "
RedHatEnterprise = "ð© "
Redox = "𧪠"
Solus = "âµ "
SUSE = "ðŠ "
Ubuntu = "ð¯ "
Unknown = "â "
Windows = "ðª "
å€æ°
å€æ° | èšå®äŸ | 説æ |
---|---|---|
symbol | ðïž |
The current operating system symbol from advanced option symbols |
name | Arch Linux |
The current operating system name |
type | Arch |
The current operating system type |
codename | The current operating system codename, if applicable | |
edition | The current operating system edition, if applicable | |
version | The current operating system version, if applicable | |
style* | ãªãã·ã§ã³ style ã®å€ããã©ãŒãã |
*: ãã®å€æ°ã¯ãã¹ã¿ã€ã«æååã®äžéšãšããŠã®ã¿äœ¿çšããããšãã§ããŸãã
èšå®äŸ
# ~/.config/starship.toml
[os]
format = "on [($name )]($style)"
style = "bold blue"
disabled = false
[os.symbols]
Windows = "îª "
Arch = "Arch is the best! "
ããã±ãŒãžã®ããŒãžã§ã³
package
ã¢ãžã¥ãŒã«ã¯ãçŸåšã®ãã£ã¬ã¯ããªãããã±ãŒãžã®ãªããžããªã§ããå Žåã«è¡šç€ºãããçŸåšã®ããŒãžã§ã³ã衚瀺ãããŸãã The module currently supports npm
, nimble
, cargo
, poetry
, python
, composer
, gradle
, julia
, mix
, helm
, shards
, daml
and dart
packages.
- npm â The
npm
package version is extracted from thepackage.json
present in the current directory - Cargo â The
cargo
package version is extracted from theCargo.toml
present in the current directory - Nimble - The
nimble
package version is extracted from the*.nimble
file present in the current directory with thenimble dump
command - Poetry â The
poetry
package version is extracted from thepyproject.toml
present in the current directory - Python - The
python
package version is extracted from a PEP 621 compliantpyproject.toml
or asetup.cfg
present in the current directory - Composer â The
composer
package version is extracted from thecomposer.json
present in the current directory - Gradle â The
gradle
package version is extracted from thebuild.gradle
present in the current directory - Julia - The package version is extracted from the
Project.toml
present in the current directory - Mix - The
mix
package version is extracted from themix.exs
present in the current directory - Helm - The
helm
chart version is extracted from theChart.yaml
present in the current directory - Maven - The
maven
package version is extracted from thepom.xml
present in the current directory - Meson - The
meson
package version is extracted from themeson.build
present in the current directory - Shards - The
shards
package version is extracted from theshard.yml
present in the current directory - V - The
vlang
package version is extracted from thev.mod
present in the current directory - SBT - The
sbt
package version is extracted from thebuild.sbt
present in the current directory - Daml - The
daml
package version is extracted from thedaml.yaml
present in the current directory - Dart - The
dart
package version is extracted from thepubspec.yaml
present in the current directory
â ïž è¡šç€ºãããããŒãžã§ã³ã¯ãããã±ãŒãžãããŒãžã£ãŒã§ã¯ãªãããœãŒã¹ã³ãŒããçŸåšã®ãã£ã¬ã¯ããªã«ããããã±ãŒãžã®ããŒãžã§ã³ã§ãã
ãªãã·ã§ã³
ãªãã·ã§ã³ | ããã©ã«ã | 説æ |
---|---|---|
format |
'is [$symbol$version]($style) ' |
module ã®ãã©ãŒãããã§ãã |
symbol |
'ðŠ ' |
ããã±ãŒãžã®ããŒãžã§ã³ã衚瀺ããåã«äœ¿çšãããèšå·ã§ãã |
version_format |
'v${raw}' |
ããŒãžã§ã³ã®ãã©ãŒãããã 䜿çšå¯èœãªå€æ°ã¯raw ãmajor ãminor ãšpatch ã§ãã |
style |
'bold 208' |
ã¢ãžã¥ãŒã«ã®ã¹ã¿ã€ã«ã§ãã |
display_private |
false |
Enable displaying version for packages marked as private. |
disabled |
false |
package ã¢ãžã¥ãŒã«ãç¡å¹ã«ããŸãã |
å€æ°
å€æ° | èšå®äŸ | 説æ |
---|---|---|
version | v1.0.0 |
The version of your package |
symbol | ãªãã·ã§ã³ symbol ã®å€ããã©ãŒãã |
|
style* | ãªãã·ã§ã³ style ã®å€ããã©ãŒãã |
*: ãã®å€æ°ã¯ãã¹ã¿ã€ã«æååã®äžéšãšããŠã®ã¿äœ¿çšããããšãã§ããŸãã
èšå®äŸ
# ~/.config/starship.toml
[package]
format = 'via [ð $version](208 bold) '
Perl
perl
ã¢ãžã¥ãŒã«ã¯ãçŸåšã€ã³ã¹ããŒã«ãããŠããPerlã®ããŒãžã§ã³ã衚瀺ããŸãã ããã©ã«ãã§ã¯æ¬¡ã®æ¡ä»¶ã®ãããããæºãããããšãã¢ãžã¥ãŒã«ã衚瀺ãããŸãã
- ã«ã¬ã³ããã£ã¬ã¯ããªã«
Makefile.PL
ãŸãã¯Build.PL
ãã¡ã€ã«ãå«ãŸããŠãã - ã«ã¬ã³ããã£ã¬ã¯ããªã«
cpanfile
ãŸãã¯cpanfile.snapshot
ãã¡ã€ã«ãå«ãŸããŠãã - ã«ã¬ã³ããã£ã¬ã¯ããªã«
META.json
ãŸãã¯META.yml
ãã¡ã€ã«ãå«ãŸããŠãã - ã«ã¬ã³ããã£ã¬ã¯ããªã«
.perl-version
ãã¡ã€ã«ãå«ãŸããŠãã - ã«ã¬ã³ããã£ã¬ã¯ããªã«æ¡åŒµåã
.pl
ã.pm
ãŸãã¯.pod
ã®ãã¡ã€ã«ãå«ãŸããŠãã
ãªãã·ã§ã³
ãªãã·ã§ã³ | ããã©ã«ã | 説æ |
---|---|---|
format |
'via [$symbol($version )]($style)' |
ã¢ãžã¥ãŒã«ã®ãã©ãŒãããæååã |
version_format |
'v${raw}' |
ããŒãžã§ã³ã®ãã©ãŒãããã 䜿çšå¯èœãªå€æ°ã¯raw ãmajor ãminor ãšpatch ã§ãã |
symbol |
'ðª ' |
The symbol used before displaying the version of Perl |
detect_extensions |
['pl', 'pm', 'pod'] |
ã©ã®æ¡åŒµåããã®ã¢ãžã¥ãŒã«ãã¢ã¯ãã£ãã«ããã |
detect_files |
['Makefile.PL', 'Build.PL', 'cpanfile', 'cpanfile.snapshot', 'META.json', 'META.yml', '.perl-version'] |
ã©ã®ãã¡ã€ã«åããã®ã¢ãžã¥ãŒã«ãã¢ã¯ãã£ãã«ããã |
detect_folders |
[] |
ã©ã®ãã©ã«ããŒããã®ã¢ãžã¥ãŒã«ãã¢ã¯ãã£ãã«ããã |
style |
'bold 149' |
ã¢ãžã¥ãŒã«ã®ã¹ã¿ã€ã«ã§ãã |
disabled |
false |
Disables the perl module. |
å€æ°
å€æ° | èšå®äŸ | 説æ |
---|---|---|
version | v5.26.1 |
The version of perl |
symbol | ãªãã·ã§ã³ symbol ã®å€ããã©ãŒãã |
|
style* | ãªãã·ã§ã³ style ã®å€ããã©ãŒãã |
èšå®äŸ
# ~/.config/starship.toml
[perl]
format = 'via [ðŠª $version]($style) '
PHP
php
ã¢ãžã¥ãŒã«ã¯ãçŸåšã€ã³ã¹ããŒã«ãããŠããPHP ã®ããŒãžã§ã³ã衚瀺ããŸãã ããã©ã«ãã§ã¯æ¬¡ã®æ¡ä»¶ã®ãããããæºãããããšãã¢ãžã¥ãŒã«ã衚瀺ãããŸãã
- The current directory contains a
composer.json
file - ã«ã¬ã³ããã£ã¬ã¯ããªã«
.php-version
ãã¡ã€ã«ãå«ãŸããŠãã - ã«ã¬ã³ããã£ã¬ã¯ããªã«æ¡åŒµåã
.php
ã®ãã¡ã€ã«ãå«ãŸããŠãã
ãªãã·ã§ã³
ãªãã·ã§ã³ | ããã©ã«ã | 説æ |
---|---|---|
format |
'via [$symbol($version )]($style)' |
module ã®ãã©ãŒãããã§ãã |
version_format |
'v${raw}' |
ããŒãžã§ã³ã®ãã©ãŒãããã 䜿çšå¯èœãªå€æ°ã¯raw ãmajor ãminor ãšpatch ã§ãã |
symbol |
'ð ' |
PHPã®ããŒãžã§ã³ã衚瀺ããåã«äœ¿çšãããèšå·ã§ãã |
detect_extensions |
['php'] |
ã©ã®æ¡åŒµåããã®ã¢ãžã¥ãŒã«ãã¢ã¯ãã£ãã«ããã |
detect_files |
['composer.json', '.php-version'] |
ã©ã®ãã¡ã€ã«åããã®ã¢ãžã¥ãŒã«ãã¢ã¯ãã£ãã«ããã |
detect_folders |
[] |
ã©ã®ãã©ã«ããŒããã®ã¢ãžã¥ãŒã«ãã¢ã¯ãã£ãã«ããã |
style |
'147 bold' |
ã¢ãžã¥ãŒã«ã®ã¹ã¿ã€ã«ã§ãã |
disabled |
false |
php ã¢ãžã¥ãŒã«ãç¡å¹ã«ããŸãã |
å€æ°
å€æ° | èšå®äŸ | 説æ |
---|---|---|
version | v7.3.8 |
The version of php |
symbol | ãªãã·ã§ã³ symbol ã®å€ããã©ãŒãã |
|
style* | ãªãã·ã§ã³ style ã®å€ããã©ãŒãã |
*: ãã®å€æ°ã¯ãã¹ã¿ã€ã«æååã®äžéšãšããŠã®ã¿äœ¿çšããããšãã§ããŸãã
èšå®äŸ
# ~/.config/starship.toml
[php]
format = 'via [ð¹ $version](147 bold) '
Pulumi
The pulumi
module shows the current username, selected Pulumi Stack, and version.
::: tip
By default the Pulumi version is not shown, since it takes an order of magnitude longer to load then most plugins (~70ms). ããã§ãæå¹ã«ãããå Žåã¯ã 以äžã®äŸã«åŸã£ãŠãã ãã.
:::
ããã©ã«ãã§ã¯æ¬¡ã®æ¡ä»¶ã®ãããããæºãããããšãã¢ãžã¥ãŒã«ã衚瀺ãããŸãã
- ã«ã¬ã³ããã£ã¬ã¯ããªã«
Pulumi.yaml
ãŸãã¯Pulumi.yml
ãã¡ã€ã«ãå«ãŸããŠãã - A parent directory contains either
Pulumi.yaml
orPulumi.yml
unlesssearch_upwards
is set tofalse
ãªãã·ã§ã³
ãªãã·ã§ã³ | ããã©ã«ã | 説æ |
---|---|---|
format |
'via [$symbol($username@)$stack]($style) ' |
ã¢ãžã¥ãŒã«ã®ãã©ãŒãããæååã |
version_format |
'v${raw}' |
ããŒãžã§ã³ã®ãã©ãŒãããã 䜿çšå¯èœãªå€æ°ã¯raw ãmajor ãminor ãšpatch ã§ãã |
symbol |
'ï² ' |
A format string shown before the Pulumi stack. |
style |
'bold 5' |
ã¢ãžã¥ãŒã«ã®ã¹ã¿ã€ã«ã§ãã |
search_upwards |
true |
Enable discovery of pulumi config files in parent directories. |
disabled |
false |
Disables the pulumi module. |
å€æ°
å€æ° | èšå®äŸ | 説æ |
---|---|---|
version | v0.12.24 |
The version of pulumi |
stack | dev |
The current Pulumi stack |
username | alice |
The current Pulumi username |
symbol | ãªãã·ã§ã³ symbol ã®å€ããã©ãŒãã |
|
style* | ãªãã·ã§ã³ style ã®å€ããã©ãŒãã |
*: ãã®å€æ°ã¯ãã¹ã¿ã€ã«æååã®äžéšãšããŠã®ã¿äœ¿çšããããšãã§ããŸãã
èšå®äŸ
With Pulumi Version
# ~/.config/starship.toml
[pulumi]
format = '[ð¥ ($version )$stack]($style) '
Without Pulumi version
# ~/.config/starship.toml
[pulumi]
symbol = 'ð¥ '
format = '[$symbol$stack]($style) '
PureScript
purescript
ã¢ãžã¥ãŒã«ã¯ãçŸåšã€ã³ã¹ããŒã«ãããŠããPureScriptã®ããŒãžã§ã³ã衚瀺ããŸãã ããã©ã«ãã§ã¯æ¬¡ã®æ¡ä»¶ã®ãããããæºãããããšãã¢ãžã¥ãŒã«ã衚瀺ãããŸãã
- ã«ã¬ã³ããã£ã¬ã¯ããªã«
spago.dhall
ãã¡ã€ã«ãå«ãŸããŠãã - ã«ã¬ã³ããã£ã¬ã¯ããªã«æ¡åŒµåã
.purs
ã®ãã¡ã€ã«ãå«ãŸããŠãã
ãªãã·ã§ã³
ãªãã·ã§ã³ | ããã©ã«ã | 説æ |
---|---|---|
format |
'via [$symbol($version )]($style)' |
module ã®ãã©ãŒãããã§ãã |
version_format |
'v${raw}' |
ããŒãžã§ã³ã®ãã©ãŒãããã 䜿çšå¯èœãªå€æ°ã¯raw ãmajor ãminor ãšpatch ã§ãã |
symbol |
'<=> ' |
The symbol used before displaying the version of PureScript. |
detect_extensions |
['purs'] |
ã©ã®æ¡åŒµåããã®ã¢ãžã¥ãŒã«ãã¢ã¯ãã£ãã«ããã |
detect_files |
['spago.dhall'] |
ã©ã®ãã¡ã€ã«åããã®ã¢ãžã¥ãŒã«ãã¢ã¯ãã£ãã«ããã |
detect_folders |
[] |
ã©ã®ãã©ã«ããŒããã®ã¢ãžã¥ãŒã«ãã¢ã¯ãã£ãã«ããã |
style |
'bold white' |
ã¢ãžã¥ãŒã«ã®ã¹ã¿ã€ã«ã§ãã |
disabled |
false |
Disables the purescript module. |
å€æ°
å€æ° | èšå®äŸ | 説æ |
---|---|---|
version | 0.13.5 |
The version of purescript |
symbol | ãªãã·ã§ã³ symbol ã®å€ããã©ãŒãã |
|
style* | ãªãã·ã§ã³ style ã®å€ããã©ãŒãã |
*: ãã®å€æ°ã¯ãã¹ã¿ã€ã«æååã®äžéšãšããŠã®ã¿äœ¿çšããããšãã§ããŸãã
èšå®äŸ
# ~/.config/starship.toml
[purescript]
format = 'via [$symbol$version](bold white)'
Python
The python
module shows the currently installed version of Python and the current Python virtual environment if one is activated.
pyenvversionname
ã true
ã«èšå®ãããŠããå Žå ãpyenv ã§ã®ããŒãžã§ã³åã衚瀺ãããŸã ã ããã§ãªããã°ãpython --version
ãå
ã«ããŒãžã§ã³çªå·ã衚瀺ããŸãã
ããã©ã«ãã§ã¯æ¬¡ã®æ¡ä»¶ã®ãããããæºãããããšãã¢ãžã¥ãŒã«ã衚瀺ãããŸãã
- ã«ã¬ã³ããã£ã¬ã¯ããªã«
.python-version
ãã¡ã€ã«ãå«ãŸããŠãã - ã«ã¬ã³ããã£ã¬ã¯ããªã«
Pipfile
ãã¡ã€ã«ãå«ãŸããŠãã - The current directory contains a
__init__.py
file - ã«ã¬ã³ããã£ã¬ã¯ããªã«
pyproject.toml
ãã¡ã€ã«ãå«ãŸããŠãã - ã«ã¬ã³ããã£ã¬ã¯ããªã«
requirements.txt
ãã¡ã€ã«ãå«ãŸããŠãã - ã«ã¬ã³ããã£ã¬ã¯ããªã«
setup.py
ãã¡ã€ã«ãå«ãŸããŠãã - ã«ã¬ã³ããã£ã¬ã¯ããªã«
tox.ini
ãã¡ã€ã«ãå«ãŸããŠãã - ã«ã¬ã³ããã£ã¬ã¯ããªã«
.py
ã®æ¡åŒµåã®ãã¡ã€ã«ãå«ãŸããŠãã. - ä»®æ³ç°å¢ãã¢ã¯ãã£ãã§ãã
ãªãã·ã§ã³
ãªãã·ã§ã³ | ããã©ã«ã | 説æ |
---|---|---|
format |
'via [${symbol}${pyenv_prefix}(${version} )(\($virtualenv\) )]($style)' |
module ã®ãã©ãŒãããã§ãã |
version_format |
'v${raw}' |
ããŒãžã§ã³ã®ãã©ãŒãããã 䜿çšå¯èœãªå€æ°ã¯raw ãmajor ãminor ãšpatch ã§ãã |
symbol |
'ð ' |
A format string representing the symbol of Python |
style |
'yellow bold' |
ã¢ãžã¥ãŒã«ã®ã¹ã¿ã€ã«ã§ãã |
pyenv_version_name |
false |
pyenvã䜿çšããŠPythonããŒãžã§ã³ãååŸããŸã |
pyenv_prefix |
pyenv |
Prefix before pyenv version display, only used if pyenv is used |
python_binary |
['python', 'python3', 'python2'] |
Configures the python binaries that Starship should executes when getting the version. |
detect_extensions |
['py'] |
ã©ã®æ¡åŒµåããã®ã¢ãžã¥ãŒã«ãã¢ã¯ãã£ãã«ããã |
detect_files |
['.python-version', 'Pipfile', '__init__.py', 'pyproject.toml', 'requirements.txt', 'setup.py', 'tox.ini'] |
ã©ã®ãã¡ã€ã«åããã®ã¢ãžã¥ãŒã«ãã¢ã¯ãã£ãã«ããã |
detect_folders |
[] |
ã©ã®ãã©ã«ããŒããã®ã¢ãžã¥ãŒã«ãã¢ã¯ãã£ãã«ããã |
disabled |
false |
python ã¢ãžã¥ãŒã«ãç¡å¹ã«ããŸãã |
::: tip
The python_binary
variable accepts either a string or a list of strings. Starship will try executing each binary until it gets a result. Note you can only change the binary that Starship executes to get the version of Python not the arguments that are used.
The default values and order for python_binary
was chosen to first identify the Python version in a virtualenv/conda environments (which currently still add a python
, no matter if it points to python3
or python2
). This has the side effect that if you still have a system Python 2 installed, it may be picked up before any Python 3 (at least on Linux Distros that always symlink /usr/bin/python
to Python 2). If you do not work with Python 2 anymore but cannot remove the system Python 2, changing this to 'python3'
will hide any Python version 2, see example below.
:::
å€æ°
å€æ° | èšå®äŸ | 説æ |
---|---|---|
version | 'v3.8.1' |
The version of python |
symbol | 'ð ' |
ãªãã·ã§ã³ symbol ã®å€ããã©ãŒãã |
style | 'yellow bold' |
ãªãã·ã§ã³ style ã®å€ããã©ãŒãã |
pyenv_prefix | 'pyenv ' |
Mirrors the value of option pyenv_prefix |
virtualenv | 'venv' |
The current virtualenv name |
èšå®äŸ
# ~/.config/starship.toml
[python]
symbol = 'ðŸ '
pyenv_version_name = true
# ~/.config/starship.toml
[python]
# Only use the `python3` binary to get the version.
python_binary = 'python3'
# ~/.config/starship.toml
[python]
# Don't trigger for files with the py extension
detect_extensions = []
# ~/.config/starship.toml
[python]
# Display the version of python from inside a local venv.
#
# Note this will only work when the venv is inside the project and it will only
# work in the directory that contains the venv dir but maybe this is ok?
python_binary = ['./venv/bin/python', 'python', 'python3', 'python2']
R
rlang
ã¢ãžã¥ãŒã«ã¯ãçŸåšã€ã³ã¹ããŒã«ãããŠããRã®ããŒãžã§ã³ã衚瀺ããŸãã 次ã®æ¡ä»¶ã®ãããããæºãããããšãã¢ãžã¥ãŒã«ã衚瀺ãããŸãã
- ã«ã¬ã³ããã£ã¬ã¯ããªã«æ¡åŒµåã
.R
ã®ãã¡ã€ã«ãå«ãŸããŠãã - ã«ã¬ã³ããã£ã¬ã¯ããªã«æ¡åŒµåã
.Rd
ã®ãã¡ã€ã«ãå«ãŸããŠãã - ã«ã¬ã³ããã£ã¬ã¯ããªã«æ¡åŒµåã
.Rmd
ã®ãã¡ã€ã«ãå«ãŸããŠãã - ã«ã¬ã³ããã£ã¬ã¯ããªã«æ¡åŒµåã
.Rproj
ã®ãã¡ã€ã«ãå«ãŸããŠãã - ã«ã¬ã³ããã£ã¬ã¯ããªã«æ¡åŒµåã
.Rsx
ã®ãã¡ã€ã«ãå«ãŸããŠãã - ã«ã¬ã³ããã£ã¬ã¯ããªã«
.Rprofile
ãã¡ã€ã«ãå«ãŸããŠãã - ã«ã¬ã³ããã£ã¬ã¯ããªã«
.Rproj.user
ãã©ã«ããå«ãŸããŠãã
ãªãã·ã§ã³
ãªãã·ã§ã³ | ããã©ã«ã | 説æ |
---|---|---|
format |
'via [$symbol($version )]($style)' |
module ã®ãã©ãŒãããã§ãã |
version_format |
'v${raw}' |
ããŒãžã§ã³ã®ãã©ãŒãããã 䜿çšå¯èœãªå€æ°ã¯raw ãmajor ãminor ãšpatch ã§ãã |
symbol |
'ð' |
A format string representing the symbol of R. |
style |
'blue bold' |
ã¢ãžã¥ãŒã«ã®ã¹ã¿ã€ã«ã§ãã |
detect_extensions |
['R', 'Rd', 'Rmd', 'Rproj', 'Rsx'] |
ã©ã®æ¡åŒµåããã®ã¢ãžã¥ãŒã«ãã¢ã¯ãã£ãã«ããã |
detect_files |
['.Rprofile'] |
ã©ã®ãã¡ã€ã«åããã®ã¢ãžã¥ãŒã«ãã¢ã¯ãã£ãã«ããã |
detect_folders |
['.Rproj.user'] |
ã©ã®ãã©ã«ããŒããã®ã¢ãžã¥ãŒã«ãã¢ã¯ãã£ãã«ããã |
disabled |
false |
Disables the r module. |
å€æ°
å€æ° | èšå®äŸ | 説æ |
---|---|---|
version | v4.0.5 |
The version of R |
symbol | ãªãã·ã§ã³ symbol ã®å€ããã©ãŒãã |
|
style | 'blue bold' |
ãªãã·ã§ã³ style ã®å€ããã©ãŒãã |
èšå®äŸ
# ~/.config/starship.toml
[rlang]
format = 'with [ð $version](blue bold) '
Raku
The raku
module shows the currently installed version of Raku. ããã©ã«ãã§ã¯æ¬¡ã®æ¡ä»¶ã®ãããããæºãããããšãã¢ãžã¥ãŒã«ã衚瀺ãããŸãã
- The current directory contains a
META6.json
file - The current directory contains a
.p6
,.pm6
,.raku
,.rakumod
or.pod6
ãªãã·ã§ã³
ãªãã·ã§ã³ | ããã©ã«ã | 説æ |
---|---|---|
format |
'via [$symbol($version-$vm_version )]($style)' |
ã¢ãžã¥ãŒã«ã®ãã©ãŒãããæååã |
version_format |
'v${raw}' |
ããŒãžã§ã³ã®ãã©ãŒãããã 䜿çšå¯èœãªå€æ°ã¯raw ãmajor ãminor ãšpatch ã§ãã |
symbol |
'ðŠ ' |
The symbol used before displaying the version of Raku |
detect_extensions |
['p6', 'pm6', 'pod6', 'raku', 'rakumod'] |
ã©ã®æ¡åŒµåããã®ã¢ãžã¥ãŒã«ãã¢ã¯ãã£ãã«ããã |
detect_files |
['META6.json'] |
ã©ã®ãã¡ã€ã«åããã®ã¢ãžã¥ãŒã«ãã¢ã¯ãã£ãã«ããã |
detect_folders |
[] |
ã©ã®ãã©ã«ããŒããã®ã¢ãžã¥ãŒã«ãã¢ã¯ãã£ãã«ããã |
style |
'bold 149' |
ã¢ãžã¥ãŒã«ã®ã¹ã¿ã€ã«ã§ãã |
disabled |
false |
Disables the raku module. |
å€æ°
å€æ° | èšå®äŸ | 説æ |
---|---|---|
version | v6.d |
The version of raku |
vm_version | moar |
The version of VM raku is built on |
symbol | ãªãã·ã§ã³ symbol ã®å€ããã©ãŒãã |
|
style* | ãªãã·ã§ã³ style ã®å€ããã©ãŒãã |
èšå®äŸ
# ~/.config/starship.toml
[raku]
format = 'via [ðŠª $version]($style) '
Red
ããã©ã«ãã§ã¯red
ã¢ãžã¥ãŒã«ã¯ãçŸåšã€ã³ã¹ããŒã«ãããŠããRedã®ããŒãžã§ã³ã衚瀺ããŸãã 次ã®æ¡ä»¶ã®ãããããæºãããããšãã¢ãžã¥ãŒã«ã衚瀺ãããŸã:
- ã«ã¬ã³ããã£ã¬ã¯ããªã«æ¡åŒµåã
.red
or.reds
ã®ãã¡ã€ã«ãå«ãŸããŠãã
ãªãã·ã§ã³
ãªãã·ã§ã³ | ããã©ã«ã | 説æ |
---|---|---|
format |
'via [$symbol($version )]($style)' |
module ã®ãã©ãŒãããã§ãã |
version_format |
'v${raw}' |
ããŒãžã§ã³ã®ãã©ãŒãããã 䜿çšå¯èœãªå€æ°ã¯raw ãmajor ãminor ãšpatch ã§ãã |
symbol |
'ðº ' |
A format string representing the symbol of Red. |
detect_extensions |
['red'] |
ã©ã®æ¡åŒµåããã®ã¢ãžã¥ãŒã«ãã¢ã¯ãã£ãã«ããã |
detect_files |
[] |
ã©ã®ãã¡ã€ã«åããã®ã¢ãžã¥ãŒã«ãã¢ã¯ãã£ãã«ããã |
detect_folders |
[] |
ã©ã®ãã©ã«ããŒããã®ã¢ãžã¥ãŒã«ãã¢ã¯ãã£ãã«ããã |
style |
'red bold' |
ã¢ãžã¥ãŒã«ã®ã¹ã¿ã€ã«ã§ãã |
disabled |
false |
Disables the red module. |
å€æ°
å€æ° | èšå®äŸ | 説æ |
---|---|---|
version | v2.5.1 |
The version of red |
symbol | ãªãã·ã§ã³ symbol ã®å€ããã©ãŒãã |
|
style* | ãªãã·ã§ã³ style ã®å€ããã©ãŒãã |
*: ãã®å€æ°ã¯ãã¹ã¿ã€ã«æååã®äžéšãšããŠã®ã¿äœ¿çšããããšãã§ããŸãã
èšå®äŸ
# ~/.config/starship.toml
[red]
symbol = 'ðŽ '
Ruby
ããã©ã«ãã§ã¯ruby
ã¢ãžã¥ãŒã«ã¯çŸåšã€ã³ã¹ããŒã«ãããŠããRubyã®ããŒãžã§ã³ã衚瀺ããŸãã 次ã®æ¡ä»¶ã®ãããããæºãããããšãã¢ãžã¥ãŒã«ã衚瀺ãããŸã:
- ã«ã¬ã³ããã£ã¬ã¯ããªã«
Gemfile
ãã¡ã€ã«ãå«ãŸããŠãã - ã«ã¬ã³ããã£ã¬ã¯ããªã«
.ruby-version
ãã¡ã€ã«ãå«ãŸããŠãã - ã«ã¬ã³ããã£ã¬ã¯ããªã«
.rb
ãã¡ã€ã«ãå«ãŸããŠãã - ç°å¢å€æ°ã«
RUBY_VERSION
ãŸãã¯RBENV_VERSION
ãèšå®ãããŠãã
Starship gets the current Ruby version by running ruby -v
.
ãªãã·ã§ã³
ãªãã·ã§ã³ | ããã©ã«ã | 説æ |
---|---|---|
format |
'via [$symbol($version )]($style)' |
module ã®ãã©ãŒãããã§ãã |
version_format |
'v${raw}' |
ããŒãžã§ã³ã®ãã©ãŒãããã 䜿çšå¯èœãªå€æ°ã¯raw ãmajor ãminor ãšpatch ã§ãã |
symbol |
'ð ' |
Rubyã®ã·ã³ãã«ãè¡šããã©ãŒãããæåå. |
detect_extensions |
['rb'] |
ã©ã®æ¡åŒµåããã®ã¢ãžã¥ãŒã«ãã¢ã¯ãã£ãã«ããã |
detect_files |
['Gemfile', '.ruby-version'] |
ã©ã®ãã¡ã€ã«åããã®ã¢ãžã¥ãŒã«ãã¢ã¯ãã£ãã«ããã |
detect_folders |
[] |
ã©ã®ãã©ã«ããŒããã®ã¢ãžã¥ãŒã«ãã¢ã¯ãã£ãã«ããã |
detect_variables |
['RUBY_VERSION', 'RBENV_VERSION'] |
Which environment variables should trigger this module. |
style |
'bold red' |
ã¢ãžã¥ãŒã«ã®ã¹ã¿ã€ã«ã§ãã |
disabled |
false |
ruby ã¢ãžã¥ãŒã«ãç¡å¹ã«ããŸãã |
å€æ°
å€æ° | èšå®äŸ | 説æ |
---|---|---|
version | v2.5.1 |
The version of ruby |
symbol | ãªãã·ã§ã³ symbol ã®å€ããã©ãŒãã |
|
style* | ãªãã·ã§ã³ style ã®å€ããã©ãŒãã |
*: ãã®å€æ°ã¯ãã¹ã¿ã€ã«æååã®äžéšãšããŠã®ã¿äœ¿çšããããšãã§ããŸãã
èšå®äŸ
# ~/.config/starship.toml
[ruby]
symbol = 'ðº '
Rust
ããã©ã«ãã§ã¯rust
ã¢ãžã¥ãŒã«ã¯çŸåšã€ã³ã¹ããŒã«ãããŠããRustã®ããŒãžã§ã³ã衚瀺ããŸãã 次ã®æ¡ä»¶ã®ãããããæºãããããšãã¢ãžã¥ãŒã«ã衚瀺ãããŸã:
- ã«ã¬ã³ããã£ã¬ã¯ããªã«
Cargo.toml
ãã¡ã€ã«ãå«ãŸããŠãã - ã«ã¬ã³ããã£ã¬ã¯ããªã«
.rs
ã®æ¡åŒµåã®ãã¡ã€ã«ãå«ãŸããŠãã
ãªãã·ã§ã³
ãªãã·ã§ã³ | ããã©ã«ã | 説æ |
---|---|---|
format |
'via [$symbol($version )]($style)' |
module ã®ãã©ãŒãããã§ãã |
version_format |
'v${raw}' |
ããŒãžã§ã³ã®ãã©ãŒãããã 䜿çšå¯èœãªå€æ°ã¯raw ãmajor ãminor ãšpatch ã§ãã |
symbol |
'ðŠ ' |
Rustã®ã·ã³ãã«ãè¡šããã©ãŒãããæåå |
detect_extensions |
['rs'] |
ã©ã®æ¡åŒµåããã®ã¢ãžã¥ãŒã«ãã¢ã¯ãã£ãã«ããã |
detect_files |
['Cargo.toml'] |
ã©ã®ãã¡ã€ã«åããã®ã¢ãžã¥ãŒã«ãã¢ã¯ãã£ãã«ããã |
detect_folders |
[] |
ã©ã®ãã©ã«ããŒããã®ã¢ãžã¥ãŒã«ãã¢ã¯ãã£ãã«ããã |
style |
'bold red' |
ã¢ãžã¥ãŒã«ã®ã¹ã¿ã€ã«ã§ãã |
disabled |
false |
rust ã¢ãžã¥ãŒã«ãç¡å¹ã«ããŸãã |
å€æ°
å€æ° | èšå®äŸ | 説æ |
---|---|---|
version | v1.43.0-nightly |
rustc ã®ããŒãžã§ã³ |
numver | 1.51.0 |
The numeric component of the rustc version |
toolchain | beta |
The toolchain version |
symbol | ãªãã·ã§ã³ symbol ã®å€ããã©ãŒãã |
|
style* | ãªãã·ã§ã³ style ã®å€ããã©ãŒãã |
*: ãã®å€æ°ã¯ãã¹ã¿ã€ã«æååã®äžéšãšããŠã®ã¿äœ¿çšããããšãã§ããŸãã
èšå®äŸ
# ~/.config/starship.toml
[rust]
format = 'via [âïž $version](red bold)'
Scala
scala
ã¢ãžã¥ãŒã«ã¯ãçŸåšã€ã³ã¹ããŒã«ãããŠããScalaã®ããŒãžã§ã³ã衚瀺ããŸãã ããã©ã«ãã§ã¯æ¬¡ã®æ¡ä»¶ã®ãããããæºãããããšãã¢ãžã¥ãŒã«ã衚瀺ãããŸãã
- ã«ã¬ã³ããã£ã¬ã¯ããªã«
build.sbt
ã.scalaenv
ãŸãã¯.sbtenv
ãã¡ã€ã«ãå«ãŸããŠãã - ã«ã¬ã³ããã£ã¬ã¯ããªã«æ¡åŒµåã
.scala
ãŸãã¯.sbt
ã®ãã¡ã€ã«ãå«ãŸããŠãã - ã«ã¬ã³ããã£ã¬ã¯ããªã«
.metals
ãã£ã¬ã¯ããªãå«ãŸããŠãã
ãªãã·ã§ã³
ãªãã·ã§ã³ | ããã©ã«ã | 説æ |
---|---|---|
format |
'via [${symbol}(${version} )]($style)' |
module ã®ãã©ãŒãããã§ãã |
version_format |
'v${raw}' |
ããŒãžã§ã³ã®ãã©ãŒãããã 䜿çšå¯èœãªå€æ°ã¯raw ãmajor ãminor ãšpatch ã§ãã |
detect_extensions |
['sbt', 'scala'] |
ã©ã®æ¡åŒµåããã®ã¢ãžã¥ãŒã«ãã¢ã¯ãã£ãã«ããã |
detect_files |
['.scalaenv', '.sbtenv', 'build.sbt'] |
ã©ã®ãã¡ã€ã«åããã®ã¢ãžã¥ãŒã«ãã¢ã¯ãã£ãã«ããã |
detect_folders |
['.metals'] |
ã©ã®ãã©ã«ããŒããã®ã¢ãžã¥ãŒã«ãã¢ã¯ãã£ãã«ããã |
symbol |
'ð ' |
A format string representing the symbol of Scala. |
style |
'red dimmed' |
ã¢ãžã¥ãŒã«ã®ã¹ã¿ã€ã«ã§ãã |
disabled |
false |
Disables the scala module. |
å€æ°
å€æ° | èšå®äŸ | 説æ |
---|---|---|
version | 2.13.5 |
The version of scala |
symbol | ãªãã·ã§ã³ symbol ã®å€ããã©ãŒãã |
|
style* | ãªãã·ã§ã³ style ã®å€ããã©ãŒãã |
*: ãã®å€æ°ã¯ãã¹ã¿ã€ã«æååã®äžéšãšããŠã®ã¿äœ¿çšããããšãã§ããŸãã
èšå®äŸ
# ~/.config/starship.toml
[scala]
symbol = 'ð '
Shell
The shell
module shows an indicator for currently used shell.
::: tip
ãã®ã¢ãžã¥ãŒã«ã¯ããã©ã«ãã§ç¡å¹ã«ãªã£ãŠããŸãã æå¹ã«ããã«ã¯ãèšå®ãã¡ã€ã«ã§ disabled
ã false
ã«èšå®ããŸãã
:::
ãªãã·ã§ã³
ãªãã·ã§ã³ | ããã©ã«ã | 説æ |
---|---|---|
bash_indicator |
'bsh' |
A format string used to represent bash. |
fish_indicator |
'fsh' |
A format string used to represent fish. |
zsh_indicator |
'zsh' |
A format string used to represent zsh. |
powershell_indicator |
'psh' |
A format string used to represent powershell. |
ion_indicator |
'ion' |
A format string used to represent ion. |
elvish_indicator |
'esh' |
A format string used to represent elvish. |
tcsh_indicator |
'tsh' |
A format string used to represent tcsh. |
xonsh_indicator |
'xsh' |
A format string used to represent xonsh. |
cmd_indicator |
'cmd' |
A format string used to represent cmd. |
nu_indicator |
'nu' |
A format string used to represent nu. |
unknown_indicator |
'' |
The default value to be displayed when the shell is unknown. |
format |
'[$indicator]($style) ' |
module ã®ãã©ãŒãããã§ãã |
style |
'white bold' |
ã¢ãžã¥ãŒã«ã®ã¹ã¿ã€ã«ã§ãã |
disabled |
true |
Disables the shell module. |
å€æ°
å€æ° | ããã©ã«ã | 説æ |
---|---|---|
indicator | Mirrors the value of indicator for currently used shell. |
|
style* | ãªãã·ã§ã³ style ã®å€ããã©ãŒãã. |
*: ãã®å€æ°ã¯ãã¹ã¿ã€ã«æååã®äžéšãšããŠã®ã¿äœ¿çšããããšãã§ããŸãã
èšå®äŸ
# ~/.config/starship.toml
[shell]
fish_indicator = 'ï¹'
powershell_indicator = 'ï _'
unknown_indicator = 'mystery shell'
style = 'cyan bold'
disabled = false
SHLVL
The shlvl
module shows the current SHLVL
('shell level') environment variable, if it is set to a number and meets or exceeds the specified threshold.
ãªãã·ã§ã³
ãªãã·ã§ã³ | ããã©ã«ã | 説æ |
---|---|---|
threshold |
2 |
Display threshold. |
format |
'[$symbol$shlvl]($style) ' |
module ã®ãã©ãŒãããã§ãã |
symbol |
'âïž ' |
The symbol used to represent the SHLVL . |
repeat |
false |
Causes symbol to be repeated by the current SHLVL amount. |
style |
'bold yellow' |
ã¢ãžã¥ãŒã«ã®ã¹ã¿ã€ã«ã§ãã |
disabled |
true |
Disables the shlvl module. |
å€æ°
å€æ° | èšå®äŸ | 説æ |
---|---|---|
shlvl | 3 |
The current value of SHLVL |
symbol | ãªãã·ã§ã³ symbol ã®å€ããã©ãŒãã |
|
style* | ãªãã·ã§ã³ style ã®å€ããã©ãŒãã |
*: ãã®å€æ°ã¯ãã¹ã¿ã€ã«æååã®äžéšãšããŠã®ã¿äœ¿çšããããšãã§ããŸãã
èšå®äŸ
# ~/.config/starship.toml
[shlvl]
disabled = false
format = '$shlvl level(s) down'
threshold = 3
Singularity
The singularity
module shows the current Singularity image, if inside a container and $SINGULARITY_NAME
is set.
ãªãã·ã§ã³
ãªãã·ã§ã³ | ããã©ã«ã | 説æ |
---|---|---|
format |
'[$symbol\[$env\]]($style) ' |
module ã®ãã©ãŒãããã§ãã |
symbol |
'' |
A format string displayed before the image name. |
style |
'bold dimmed blue' |
ã¢ãžã¥ãŒã«ã®ã¹ã¿ã€ã«ã§ãã |
disabled |
false |
Disables the singularity module. |
å€æ°
å€æ° | èšå®äŸ | 説æ |
---|---|---|
env | centos.img |
The current Singularity image |
symbol | ãªãã·ã§ã³ symbol ã®å€ããã©ãŒãã |
|
style* | ãªãã·ã§ã³ style ã®å€ããã©ãŒãã |
*: ãã®å€æ°ã¯ãã¹ã¿ã€ã«æååã®äžéšãšããŠã®ã¿äœ¿çšããããšãã§ããŸãã
èšå®äŸ
# ~/.config/starship.toml
[singularity]
format = '[ðŠ \[$env\]]($style) '
Spack
The spack
module shows the current Spack environment, if $SPACK_ENV
is set.
ãªãã·ã§ã³
ãªãã·ã§ã³ | ããã©ã«ã | 説æ |
---|---|---|
truncation_length |
1 |
The number of directories the environment path should be truncated to. 0 ã¯åãæšãŠããªãããšãæå³ããŸãã directory ãã芧ãã ããã |
symbol |
'ð
¢ ' |
ç°å¢åã®çŽåã«äœ¿çšãããã·ã³ãã«ã§ãã |
style |
'bold blue' |
ã¢ãžã¥ãŒã«ã®ã¹ã¿ã€ã«ã§ãã |
format |
'via [$symbol$environment]($style) ' |
module ã®ãã©ãŒãããã§ãã |
disabled |
false |
Disables the spack module. |
å€æ°
å€æ° | èšå®äŸ | 説æ |
---|---|---|
environment | astronauts |
The current spack environment |
symbol | ãªãã·ã§ã³ symbol ã®å€ããã©ãŒãã |
|
style* | ãªãã·ã§ã³ style ã®å€ããã©ãŒãã |
*: ãã®å€æ°ã¯ãã¹ã¿ã€ã«æååã®äžéšãšããŠã®ã¿äœ¿çšããããšãã§ããŸãã
èšå®äŸ
# ~/.config/starship.toml
[spack]
format = '[$symbol$environment](dimmed blue) '
Status
The status
module displays the exit code of the previous command. If $success_symbol is empty (default), the module will be shown only if the exit code is not 0
. The status code will cast to a signed 32-bit integer.
::: tip
ãã®ã¢ãžã¥ãŒã«ã¯ããã©ã«ãã§ç¡å¹ã«ãªã£ãŠããŸãã æå¹ã«ããã«ã¯ãèšå®ãã¡ã€ã«ã§ disabled
ã false
ã«èšå®ããŸãã
:::
ãªãã·ã§ã³
ãªãã·ã§ã³ | ããã©ã«ã | 説æ |
---|---|---|
format |
'[$symbol$status]($style) ' |
The format of the module |
symbol |
'â' |
The symbol displayed on program error |
success_symbol |
'' |
The symbol displayed on program success |
not_executable_symbol |
'ð«' |
The symbol displayed when file isn't executable |
not_found_symbol |
'ð' |
The symbol displayed when the command can't be found |
sigint_symbol |
'ð§±' |
The symbol displayed on SIGINT (Ctrl + c) |
signal_symbol |
'â¡' |
The symbol displayed on any signal |
style |
'bold red' |
ã¢ãžã¥ãŒã«ã®ã¹ã¿ã€ã«ã§ãã |
recognize_signal_code |
true |
Enable signal mapping from exit code |
map_symbol |
false |
Enable symbols mapping from exit code |
pipestatus |
false |
Enable pipestatus reporting |
pipestatus_separator |
| |
The symbol used to separate pipestatus segments (supports formatting) |
pipestatus_format |
'\[$pipestatus\] => [$symbol$common_meaning$signal_name$maybe_int]($style)' |
The format of the module when the command is a pipeline |
pipestatus_segment_format |
When specified, replaces format when formatting pipestatus segments |
|
disabled |
true |
Disables the status module. |
å€æ°
å€æ° | èšå®äŸ | 説æ |
---|---|---|
status | 127 |
The exit code of the last command |
hex_status | 0x7F |
The exit code of the last command in hex |
int | 127 |
The exit code of the last command |
common_meaning | ERROR |
Meaning of the code if not a signal |
signal_number | 9 |
Signal number corresponding to the exit code, only if signalled |
signal_name | KILL |
Name of the signal corresponding to the exit code, only if signalled |
maybe_int | 7 |
Contains the exit code number when no meaning has been found |
pipestatus | Rendering of in pipeline programs's exit codes, this is only available in pipestatus_format | |
symbol | ãªãã·ã§ã³ symbol ã®å€ããã©ãŒãã |
|
style* | ãªãã·ã§ã³ style ã®å€ããã©ãŒãã |
*: ãã®å€æ°ã¯ãã¹ã¿ã€ã«æååã®äžéšãšããŠã®ã¿äœ¿çšããããšãã§ããŸãã
èšå®äŸ
# ~/.config/starship.toml
[status]
style = 'bg:blue'
symbol = 'ðŽ '
success_symbol = 'ð¢ SUCCESS'
format = '[\[$symbol$common_meaning$signal_name$maybe_int\]]($style) '
map_symbol = true
disabled = false
Sudo
The sudo
module displays if sudo credentials are currently cached. The module will only be shown if credentials are cached.
::: tip
ãã®ã¢ãžã¥ãŒã«ã¯ããã©ã«ãã§ç¡å¹ã«ãªã£ãŠããŸãã æå¹ã«ããã«ã¯ãèšå®ãã¡ã€ã«ã§ disabled
ã false
ã«èšå®ããŸãã
:::
ãªãã·ã§ã³
ãªãã·ã§ã³ | ããã©ã«ã | 説æ |
---|---|---|
format |
'[as $symbol]($style)' |
The format of the module |
symbol |
'ð§ ' |
The symbol displayed when credentials are cached |
style |
'bold blue' |
ã¢ãžã¥ãŒã«ã®ã¹ã¿ã€ã«ã§ãã |
allow_windows |
false |
Since windows has no default sudo, default is disabled. |
disabled |
true |
Disables the sudo module. |
å€æ°
å€æ° | èšå®äŸ | 説æ |
---|---|---|
symbol | ãªãã·ã§ã³ symbol ã®å€ããã©ãŒãã |
|
style* | ãªãã·ã§ã³ style ã®å€ããã©ãŒãã |
*: ãã®å€æ°ã¯ãã¹ã¿ã€ã«æååã®äžéšãšããŠã®ã¿äœ¿çšããããšãã§ããŸãã
èšå®äŸ
# ~/.config/starship.toml
[sudo]
style = 'bold green'
symbol = 'ð©âð» '
disabled = false
# On windows
# $HOME\.starship\config.toml
[sudo]
allow_windows = true
disabled = false
Swift
ããã©ã«ãã§ã¯swift
ã¢ãžã¥ãŒã«ã¯ãçŸåšã€ã³ã¹ããŒã«ãããŠããSwiftã®ããŒãžã§ã³ã衚瀺ããŸãã 次ã®æ¡ä»¶ã®ãããããæºãããããšãã¢ãžã¥ãŒã«ã衚瀺ãããŸã:
- ã«ã¬ã³ããã£ã¬ã¯ããªã«
Package.swift
ãã¡ã€ã«ãå«ãŸããŠãã - ã«ã¬ã³ããã£ã¬ã¯ããªã«æ¡åŒµåã
.swift
ã®ãã¡ã€ã«ãå«ãŸããŠãã
ãªãã·ã§ã³
ãªãã·ã§ã³ | ããã©ã«ã | 説æ |
---|---|---|
format |
'via [$symbol($version )]($style)' |
module ã®ãã©ãŒãããã§ãã |
version_format |
'v${raw}' |
ããŒãžã§ã³ã®ãã©ãŒãããã 䜿çšå¯èœãªå€æ°ã¯raw ãmajor ãminor ãšpatch ã§ãã |
symbol |
'ðŠ ' |
A format string representing the symbol of Swift |
detect_extensions |
['swift'] |
ã©ã®æ¡åŒµåããã®ã¢ãžã¥ãŒã«ãã¢ã¯ãã£ãã«ããã |
detect_files |
['Package.swift'] |
ã©ã®ãã¡ã€ã«åããã®ã¢ãžã¥ãŒã«ãã¢ã¯ãã£ãã«ããã |
detect_folders |
[] |
ã©ã®ãã©ã«ããŒããã®ã¢ãžã¥ãŒã«ãã¢ã¯ãã£ãã«ããã |
style |
'bold 202' |
ã¢ãžã¥ãŒã«ã®ã¹ã¿ã€ã«ã§ãã |
disabled |
false |
Disables the swift module. |
å€æ°
å€æ° | èšå®äŸ | 説æ |
---|---|---|
version | v5.2.4 |
The version of swift |
symbol | ãªãã·ã§ã³ symbol ã®å€ããã©ãŒãã |
|
style* | ãªãã·ã§ã³ style ã®å€ããã©ãŒãã |
*: ãã®å€æ°ã¯ãã¹ã¿ã€ã«æååã®äžéšãšããŠã®ã¿äœ¿çšããããšãã§ããŸãã
èšå®äŸ
# ~/.config/starship.toml
[swift]
format = 'via [ð $version](red bold)'
Terraform
terraform
ã¢ãžã¥ãŒã«ã¯ãçŸåšéžæãããŠããTerraform workspace ãšããŒãžã§ã³ã衚瀺ããŸãã
::: tip
Terraformã®ããŒãžã§ã³ã¯ããã©ã«ãã§ã¯è¡šç€ºãããŸãããå€ãã®ãã©ã°ã€ã³ã䜿çšãããŠããå ŽåãçŸåšã®Terraformã®ããŒãžã§ã³ã§ã¯é ããªãããã§ãã ããã§ãæå¹ã«ãããå Žåã¯ã 以äžã®äŸã«åŸã£ãŠãã ãã.
:::
ããã©ã«ãã§ã¯æ¬¡ã®æ¡ä»¶ã®ãããããæºãããããšãã¢ãžã¥ãŒã«ã衚瀺ãããŸãã
- ã«ã¬ã³ããã£ã¬ã¯ããªã«
.terraform
ãã©ã«ããå«ãŸããŠãã - çŸåšã®ãã£ã¬ã¯ããªã«
.tf
,.tfplan
ãŸãã¯.tfstate
ã®ããããã®æ¡åŒµåãæã€ãã¡ã€ã«ãããã
ãªãã·ã§ã³
ãªãã·ã§ã³ | ããã©ã«ã | 説æ |
---|---|---|
format |
'via [$symbol$workspace]($style) ' |
ã¢ãžã¥ãŒã«ã®ãã©ãŒãããæååã |
version_format |
'v${raw}' |
ããŒãžã§ã³ã®ãã©ãŒãããã 䜿çšå¯èœãªå€æ°ã¯raw ãmajor ãminor ãšpatch ã§ãã |
symbol |
'ð ' |
ã¯ãŒã¯ã¹ããŒã¹ã®åã«è¡šç€ºããããã©ãŒãããæååã |
detect_extensions |
['tf', 'tfplan', 'tfstate'] |
ã©ã®æ¡åŒµåããã®ã¢ãžã¥ãŒã«ãã¢ã¯ãã£ãã«ããã |
detect_files |
[] |
ã©ã®ãã¡ã€ã«åããã®ã¢ãžã¥ãŒã«ãã¢ã¯ãã£ãã«ããã |
detect_folders |
['.terraform'] |
ã©ã®ãã©ã«ããŒããã®ã¢ãžã¥ãŒã«ãã¢ã¯ãã£ãã«ããã |
style |
'bold 105' |
ã¢ãžã¥ãŒã«ã®ã¹ã¿ã€ã«ã§ãã |
disabled |
false |
terraform ã¢ãžã¥ãŒã«ãç¡å¹ã«ããŸãã |
å€æ°
å€æ° | èšå®äŸ | 説æ |
---|---|---|
version | v0.12.24 |
terraform ã®ããŒãžã§ã³ |
workspace | default |
çŸåšã®Terraformã¯ãŒã¯ã¹ããŒã¹ |
symbol | ãªãã·ã§ã³ symbol ã®å€ããã©ãŒãã |
|
style* | ãªãã·ã§ã³ style ã®å€ããã©ãŒãã |
*: ãã®å€æ°ã¯ãã¹ã¿ã€ã«æååã®äžéšãšããŠã®ã¿äœ¿çšããããšãã§ããŸãã
èšå®äŸ
Terraform ããŒãžã§ã³è¡šç€ºãã
# ~/.config/starship.toml
[terraform]
format = '[ððš $version$workspace]($style) '
Terraform ããŒãžã§ã³è¡šç€ºãªã
# ~/.config/starship.toml
[terraform]
format = '[ððš $workspace]($style) '
Time
time
ã¢ãžã¥ãŒã«ã¯ãçŸåšã®çŸå°æéã瀺ããŸãã format
èšå®ã¯ãæéã®è¡šç€ºæ¹æ³ãå¶åŸ¡ããããã«chrono
ã¯ã¬ãŒãã«ãã£ãŠäœ¿çšãããŸãã 䜿çšå¯èœãªãªãã·ã§ã³ã確èªããã«ã¯ãchrono strftimeã®ããã¥ã¡ã³ããã芧ãã ããã
::: tip
ãã®ã¢ãžã¥ãŒã«ã¯ããã©ã«ãã§ç¡å¹ã«ãªã£ãŠããŸãã æå¹ã«ããã«ã¯ãèšå®ãã¡ã€ã«ã§ disabled
ã false
ã«èšå®ããŸãã
:::
ãªãã·ã§ã³
ãªãã·ã§ã³ | ããã©ã«ã | 説æ |
---|---|---|
format |
'at [$time]($style) ' |
ã¢ãžã¥ãŒã«ã®ãã©ãŒãããæååã |
use_12hr |
false |
12æéã®ãã©ãŒããããæå¹ã«ããŸãã |
time_format |
ãã®è¡šã®äžãåç §ããŠãã ãã | æå»ã®ãã©ãŒãããã«äœ¿çšãããã¯ãããã©ãŒãããæåå ã§ãã |
style |
'bold yellow' |
ã¢ãžã¥ãŒã«ã®ã¹ã¿ã€ã«ã§ãã |
utc_time_offset |
'local' |
䜿çšããUTCãªãã»ãããèšå®ããŸãã Range from -24 < x < 24. ãããŒãã30/45åã®ã¿ã€ã ãŸãŒã³ãªãã»ããã«å¯Ÿå¿ã§ããããã«ããŸãã |
disabled |
true |
time ã¢ãžã¥ãŒã«ãç¡å¹ã«ããŸãã |
time_range |
'-' |
Sets the time range during which the module will be shown. Times must be specified in 24-hours format |
If use_12hr
is true
, then time_format
defaults to '%r'
. Otherwise, it defaults to '%T'
. Manually setting time_format
will override the use_12hr
setting.
å€æ°
å€æ° | èšå®äŸ | 説æ |
---|---|---|
time | 13:08:10 |
The current time. |
style* | ãªãã·ã§ã³ style ã®å€ããã©ãŒãã |
*: ãã®å€æ°ã¯ãã¹ã¿ã€ã«æååã®äžéšãšããŠã®ã¿äœ¿çšããããšãã§ããŸãã
èšå®äŸ
# ~/.config/starship.toml
[time]
disabled = false
format = 'ð[\[ $time \]]($style) '
time_format = '%T'
utc_time_offset = '-5'
time_range = '10:00:00-14:00:00'
ãŠãŒã¶ãŒå
username
ã¢ãžã¥ãŒã«ã¯ã¢ã¯ãã£ããªãŠãŒã¶ãŒã®ãŠãŒã¶ãŒåã衚瀺ããŸãã 次ã®æ¡ä»¶ã®ãããããæºãããããšãã¢ãžã¥ãŒã«ã衚瀺ãããŸã:
- The current user is root/admin
- ã«ã¬ã³ããŠãŒã¶ãŒãããã°ã€ã³ããŠãããŠãŒã¶ãŒãšã¯ç°ãªã
- ãŠãŒã¶ãŒãSSHã»ãã·ã§ã³ãšããŠæ¥ç¶ãããŠãã
show_always
å€æ°ãtrueã«èšå®ãããŠãã
::: tip
SSH connection is detected by checking environment variables SSH_CONNECTION
, SSH_CLIENT
, and SSH_TTY
. If your SSH host does not set up these variables, one workaround is to set one of them with a dummy value.
:::
ãªãã·ã§ã³
ãªãã·ã§ã³ | ããã©ã«ã | 説æ |
---|---|---|
style_root |
'bold red' |
The style used when the user is root/admin. |
style_user |
'bold yellow' |
érootãŠãŒã¶ãŒã«äœ¿çšãããã¹ã¿ã€ã«ã§ãã |
format |
'[$user]($style) in ' |
module ã®ãã©ãŒãããã§ãã |
show_always |
false |
username ã¢ãžã¥ãŒã«ãåžžã«è¡šç€ºããŸãã |
disabled |
false |
username ã¢ãžã¥ãŒã«ãç¡å¹ã«ããŸãã |
å€æ°
å€æ° | èšå®äŸ | 説æ |
---|---|---|
style |
'red bold' |
Mirrors the value of option style_root when root is logged in and style_user otherwise. |
user |
'matchai' |
The currently logged-in user ID. |
èšå®äŸ
# ~/.config/starship.toml
[username]
style_user = 'white bold'
style_root = 'black bold'
format = 'user: [$user]($style) '
disabled = false
show_always = true
Vagrant
vagrant
ã¢ãžã¥ãŒã«ã¯ãçŸåšã€ã³ã¹ããŒã«ãããŠããVagrantã®ããŒãžã§ã³ã衚瀺ããŸãã ããã©ã«ãã§ã¯æ¬¡ã®æ¡ä»¶ã®ãããããæºãããããšãã¢ãžã¥ãŒã«ã衚瀺ãããŸãã
- ã«ã¬ã³ããã£ã¬ã¯ããªã«
Vagrantfile
ãã¡ã€ã«ãå«ãŸããŠãã
ãªãã·ã§ã³
ãªãã·ã§ã³ | ããã©ã«ã | 説æ |
---|---|---|
format |
'via [$symbol($version )]($style)' |
module ã®ãã©ãŒãããã§ãã |
version_format |
'v${raw}' |
ããŒãžã§ã³ã®ãã©ãŒãããã 䜿çšå¯èœãªå€æ°ã¯raw ãmajor ãminor ãšpatch ã§ãã |
symbol |
'â± ' |
A format string representing the symbol of Vagrant. |
detect_extensions |
[] |
ã©ã®æ¡åŒµåããã®ã¢ãžã¥ãŒã«ãã¢ã¯ãã£ãã«ããã |
detect_files |
['Vagrantfile'] |
ã©ã®ãã¡ã€ã«åããã®ã¢ãžã¥ãŒã«ãã¢ã¯ãã£ãã«ããã |
detect_folders |
[] |
ã©ã®ãã©ã«ããŒããã®ã¢ãžã¥ãŒã«ãã¢ã¯ãã£ãã«ããã |
style |
'cyan bold' |
ã¢ãžã¥ãŒã«ã®ã¹ã¿ã€ã«ã§ãã |
disabled |
false |
Disables the vagrant module. |
å€æ°
å€æ° | èšå®äŸ | 説æ |
---|---|---|
version | Vagrant 2.2.10 |
The version of Vagrant |
symbol | ãªãã·ã§ã³ symbol ã®å€ããã©ãŒãã |
|
style* | ãªãã·ã§ã³ style ã®å€ããã©ãŒãã |
*: ãã®å€æ°ã¯ãã¹ã¿ã€ã«æååã®äžéšãšããŠã®ã¿äœ¿çšããããšãã§ããŸãã
èšå®äŸ
# ~/.config/starship.toml
[vagrant]
format = 'via [â± $version](bold white) '
V
vlang
ã¢ãžã¥ãŒã«ã¯ãçŸåšã€ã³ã¹ããŒã«ãããŠããVã®ããŒãžã§ã³ã衚瀺ããŸãã ããã©ã«ãã§ã¯æ¬¡ã®æ¡ä»¶ã®ãããããæºãããããšãã¢ãžã¥ãŒã«ã衚瀺ãããŸãã
- ã«ã¬ã³ããã£ã¬ã¯ããªã«æ¡åŒµåã
.v
ã®ãã¡ã€ã«ãå«ãŸããŠãã - ã«ã¬ã³ããã£ã¬ã¯ããªã«
v.mod
ãvpkg.json
ãŸãã¯.vpkg-lock.json
ãã¡ã€ã«ãå«ãŸããŠãã
ãªãã·ã§ã³
ãªãã·ã§ã³ | ããã©ã«ã | 説æ |
---|---|---|
format |
'via [$symbol($version )]($style)' |
module ã®ãã©ãŒãããã§ãã |
version_format |
'v${raw}' |
ããŒãžã§ã³ã®ãã©ãŒãããã 䜿çšå¯èœãªå€æ°ã¯raw ãmajor ãminor ãšpatch ã§ãã |
symbol |
'V ' |
A format string representing the symbol of V |
detect_extensions |
['v'] |
ã©ã®æ¡åŒµåããã®ã¢ãžã¥ãŒã«ãã¢ã¯ãã£ãã«ããã |
detect_files |
['v.mod', 'vpkg.json', '.vpkg-lock.json' ] |
ã©ã®ãã¡ã€ã«åããã®ã¢ãžã¥ãŒã«ãã¢ã¯ãã£ãã«ããã |
detect_folders |
[] |
ã©ã®ãã©ã«ããŒããã®ã¢ãžã¥ãŒã«ãã¢ã¯ãã£ãã«ããã |
style |
'blue bold' |
ã¢ãžã¥ãŒã«ã®ã¹ã¿ã€ã«ã§ãã |
disabled |
false |
Disables the vlang module. |
å€æ°
å€æ° | èšå®äŸ | 説æ |
---|---|---|
version | v0.2 |
The version of v |
symbol | ãªãã·ã§ã³ symbol ã®å€ããã©ãŒãã |
|
style* | ãªãã·ã§ã³ style ã®å€ããã©ãŒãã |
èšå®äŸ
# ~/.config/starship.toml
[vlang]
format = 'via [V $version](blue bold) '
VCSH
The vcsh
module displays the current active VCSH repository. The module will be shown only if a repository is currently in use.
ãªãã·ã§ã³
ãªãã·ã§ã³ | ããã©ã«ã | 説æ |
---|---|---|
symbol |
'' |
The symbol used before displaying the repository name. |
style |
'bold yellow' |
ã¢ãžã¥ãŒã«ã®ã¹ã¿ã€ã«ã§ãã |
format |
'vcsh [$symbol$repo]($style) ' |
module ã®ãã©ãŒãããã§ãã |
disabled |
false |
Disables the vcsh module. |
å€æ°
å€æ° | èšå®äŸ | 説æ |
---|---|---|
repo | dotfiles if in a VCSH repo named dotfiles |
The active repository name |
symbol | ãªãã·ã§ã³ symbol ã®å€ããã©ãŒãã |
|
style* | black bold dimmed |
ãªãã·ã§ã³ style ã®å€ããã©ãŒãã |
*: ãã®å€æ°ã¯ãã¹ã¿ã€ã«æååã®äžéšãšããŠã®ã¿äœ¿çšããããšãã§ããŸãã
èšå®äŸ
# ~/.config/starship.toml
[vcsh]
format = '[ð
$repo](bold blue) '
Zig
ããã©ã«ãã§ã¯zig
ã¢ãžã¥ãŒã«ã¯ãçŸåšã€ã³ã¹ããŒã«ãããŠããZigã®ããŒãžã§ã³ã衚瀺ããŸãã 次ã®æ¡ä»¶ã®ãããããæºãããããšãã¢ãžã¥ãŒã«ã衚瀺ãããŸã:
- ã«ã¬ã³ããã£ã¬ã¯ããªã«æ¡åŒµåã
.zig
ã®ãã¡ã€ã«ãå«ãŸããŠãã
ãªãã·ã§ã³
ãªãã·ã§ã³ | ããã©ã«ã | 説æ |
---|---|---|
format |
'via [$symbol($version )]($style)' |
module ã®ãã©ãŒãããã§ãã |
version_format |
'v${raw}' |
ããŒãžã§ã³ã®ãã©ãŒãããã 䜿çšå¯èœãªå€æ°ã¯raw ãmajor ãminor ãšpatch ã§ãã |
symbol |
'⯠' |
The symbol used before displaying the version of Zig. |
style |
'bold yellow' |
ã¢ãžã¥ãŒã«ã®ã¹ã¿ã€ã«ã§ãã |
disabled |
false |
Disables the zig module. |
detect_extensions |
['zig'] |
ã©ã®æ¡åŒµåããã®ã¢ãžã¥ãŒã«ãã¢ã¯ãã£ãã«ããã |
detect_files |
[] |
ã©ã®ãã¡ã€ã«åããã®ã¢ãžã¥ãŒã«ãã¢ã¯ãã£ãã«ããã |
detect_folders |
[] |
ã©ã®ãã©ã«ããŒããã®ã¢ãžã¥ãŒã«ãã¢ã¯ãã£ãã«ããã |
å€æ°
å€æ° | èšå®äŸ | 説æ |
---|---|---|
version | v0.6.0 |
The version of zig |
symbol | ãªãã·ã§ã³ symbol ã®å€ããã©ãŒãã |
|
style* | ãªãã·ã§ã³ style ã®å€ããã©ãŒãã |
*: ãã®å€æ°ã¯ãã¹ã¿ã€ã«æååã®äžéšãšããŠã®ã¿äœ¿çšããããšãã§ããŸãã
èšå®äŸ
# ~/.config/starship.toml
[zig]
symbol = 'â¡ïž '
Custom commands
The custom
modules show the output of some arbitrary commands.
These modules will be shown if any of the following conditions are met:
- The current directory contains a file whose name is in
detect_files
- The current directory contains a directory whose name is in
detect_folders
- The current directory contains a file whose extension is in
detect_extensions
- The
when
command returns 0 - The current Operating System (std::env::consts::OS) matches with
os
field if defined.
::: tip
Multiple custom modules can be defined by using a .
.
:::
::: tip
The order in which custom modules are shown can be individually set by including ${custom.foo}
in the top level format
(as it includes a dot, you need to use ${...}
). By default, the custom
module will simply show all custom modules in the order they were defined.
:::
::: tip
Issue #1252 contains examples of custom modules. If you have an interesting example not covered there, feel free to share it there!
:::
::: warning Command output is printed unescaped to the prompt
Whatever output the command generates is printed unmodified in the prompt. This means if the output contains special sequences that are interpreted by your shell they will be expanded when displayed. These special sequences are shell specific, e.g. you can write a command module that writes bash sequences, e.g. \h
, but this module will not work in a fish or zsh shell.
Format strings can also contain shell specific prompt sequences, e.g. Bash, Zsh.
:::
ãªãã·ã§ã³
ãªãã·ã§ã³ | ããã©ã«ã | 説æ |
---|---|---|
command |
'' |
The command whose output should be printed. The command will be passed on stdin to the shell. |
when |
false |
Either a boolean value (true or false , without quotes) or a string shell command used as a condition to show the module. In case of a string, the module will be shown if the command returns a 0 status code. |
shell |
ãã®è¡šã®äžãåç §ããŠãã ãã | |
説æ |
'<custom module>' |
The description of the module that is shown when running starship explain . |
detect_files |
[] |
The files that will be searched in the working directory for a match. |
detect_folders |
[] |
The directories that will be searched in the working directory for a match. |
detect_extensions |
[] |
The extensions that will be searched in the working directory for a match. |
symbol |
'' |
The symbol used before displaying the command output. |
style |
'bold green' |
ã¢ãžã¥ãŒã«ã®ã¹ã¿ã€ã«ã§ãã |
format |
'[$symbol($output )]($style)' |
module ã®ãã©ãŒãããã§ãã |
disabled |
false |
Disables this custom module. |
os |
Operating System name on which the module will be shown (unix, linux, macos, windows, ... ) See possible values. | |
use_stdin |
An optional boolean value that overrides whether commands should be forwarded to the shell via the standard input or as an argument. If unset standard input is used by default, unless the shell does not support it (cmd, nushell). Setting this disables shell-specific argument handling. | |
ignore_timeout |
false |
Ignore global command_timeout setting and keep running external commands, no matter how long they take. |
å€æ°
å€æ° | 説æ |
---|---|
output | The output of shell command in shell |
symbol | ãªãã·ã§ã³ symbol ã®å€ããã©ãŒãã |
style* | ãªãã·ã§ã³ style ã®å€ããã©ãŒãã |
*: ãã®å€æ°ã¯ãã¹ã¿ã€ã«æååã®äžéšãšããŠã®ã¿äœ¿çšããããšãã§ããŸãã
Custom command shell
shell
accepts a non-empty list of strings, where:
- The first string is the path to the shell to use to execute the command.
- Other following arguments are passed to the shell.
If unset, it will fallback to STARSHIP_SHELL and then to 'sh' on Linux, and 'cmd /C' on Windows.
The command
will be passed in on stdin.
If shell
is not given or only contains one element and Starship detects PowerShell will be used, the following arguments will automatically be added: -NoProfile -Command -
. If shell
is not given or only contains one element and Starship detects Cmd will be used, the following argument will automatically be added: /C
and stdin
will be set to false
. If shell
is not given or only contains one element and Starship detects Nushell will be used, the following arguments will automatically be added: -c
and stdin
will be set to false
. This behavior can be avoided by explicitly passing arguments to the shell, e.g.
shell = ['pwsh', '-Command', '-']
::: warning Make sure your custom shell configuration exits gracefully
If you set a custom command, make sure that the default Shell used by starship will properly execute the command with a graceful exit (via the shell
option).
For example, PowerShell requires the -Command
parameter to execute a one liner. Omitting this parameter might throw starship into a recursive loop where the shell might try to load a full profile environment with starship itself again and hence re-execute the custom command, getting into a never ending loop.
Parameters similar to -NoProfile
in PowerShell are recommended for other shells as well to avoid extra loading time of a custom profile on every starship invocation.
Automatic detection of shells and proper parameters addition are currently implemented, but it's possible that not all shells are covered. Please open an issue with shell details and starship configuration if you hit such scenario.
:::
èšå®äŸ
# ~/.config/starship.toml
[custom.foo]
command = 'echo foo' # shows output of command
detect_files = ['foo'] # can specify filters but wildcards are not supported
when = ''' test "$HOME" = "$PWD" '''
format = ' transcending [$output]($style)'
[custom.time]
command = 'time /T'
detect_extensions = ['pst'] # filters *.pst files
shell = ['pwsh.exe', '-NoProfile', '-Command', '-']
[custom.time-as-arg]
command = 'time /T'
detect_extensions = ['pst'] # filters *.pst files
shell = ['pwsh.exe', '-NoProfile', '-Command']
use_stdin = false