37 lines
614 B
TOML
37 lines
614 B
TOML
format = '''
|
|
╭─$time $username@$hostname $directory $git_branch
|
|
╰─$character
|
|
'''
|
|
|
|
# Inserts a blank line between shell prompts
|
|
add_newline = true
|
|
|
|
[character] # The name of the module we are configuring is 'character'
|
|
disabled = false
|
|
success_symbol = '[\$](bold green)'
|
|
error_symbol = '[\$](bold red)'
|
|
|
|
[time]
|
|
disabled = false
|
|
format = '\($time\)'
|
|
time_format = '%a %d-%m 🕙 %H:%M'
|
|
|
|
|
|
[username]
|
|
format = '$user'
|
|
disabled = false
|
|
show_always = true
|
|
|
|
[hostname]
|
|
ssh_only = false
|
|
format="$hostname"
|
|
style=""
|
|
|
|
[directory]
|
|
format="$path"
|
|
|
|
[git_branch]
|
|
format="$symbol $branch"
|
|
symbol= '🌱'
|
|
disabled=false
|