-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstarship.toml
More file actions
71 lines (60 loc) · 1.42 KB
/
starship.toml
File metadata and controls
71 lines (60 loc) · 1.42 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
# Starship prompt configuration
command_timeout = 30000
# Clean, informative format
format = """
$username[@](bold green)$hostname in $directory $git_branch$git_status$python
$character"""
# ===================================
# USERNAME & HOSTNAME
# ===================================
[username]
show_always = true
format = "[$user]($style)"
style_user = "bold yellow"
style_root = "bold red"
disabled = false
[hostname]
ssh_only = false
format = "[$hostname](bold green)"
trim_at = "."
disabled = false
# ===================================
# DIRECTORY
# ===================================
[directory]
style = "blue bold"
truncation_length = 3
truncate_to_repo = true
fish_style_pwd_dir_length = 1
# ===================================
# GIT
# ===================================
[git_branch]
symbol = "🌿 "
style = "bold purple"
[git_status]
style = "red bold"
format = '([\[$all_status$ahead_behind\]]($style) )'
conflicted = "CONFLICT"
ahead = "⇡${count}"
staged = "+${count}"
renamed = "R${count}"
deleted = "-${count}"
# ===================================
# PROMPT CHARACTER
# ===================================
[character]
success_symbol = "[➜](bold green)"
error_symbol = "[✗](bold red)"
# ===================================
# LANGUAGES
# ===================================
[python]
disabled = false
format = 'via [🐍 $version]($style) '
[rust]
disabled = true
[nodejs]
disabled = true
[kubernetes]
disabled = true