1
0
mirror of https://github.com/aquatix/dotfiles.git synced 2025-12-06 22:55:10 +01:00

Command duration, Python support, better time, not always show username

This commit is contained in:
2023-11-29 13:23:53 +01:00
parent 430fee3e02
commit 1755303858

View File

@@ -18,6 +18,7 @@ $java\
$julia\ $julia\
$nodejs\ $nodejs\
$nim\ $nim\
$python\
$rust\ $rust\
$scala\ $scala\
[](fg:#86BBD8 bg:#06969A)\ [](fg:#86BBD8 bg:#06969A)\
@@ -25,6 +26,7 @@ $docker_context\
[](fg:#06969A bg:#33658A)\ [](fg:#06969A bg:#33658A)\
$time\ $time\
[ ](fg:#33658A)\ [ ](fg:#33658A)\
$cmd_duration\
""" """
# Disable the blank line at the start of the prompt # Disable the blank line at the start of the prompt
@@ -33,7 +35,8 @@ $time\
# You can also replace your username with a neat symbol like  or disable this # You can also replace your username with a neat symbol like  or disable this
# and use the os module below # and use the os module below
[username] [username]
show_always = true # show_always = true
show_always = false
style_user = "bg:#9A348E" style_user = "bg:#9A348E"
style_root = "bg:#9A348E" style_root = "bg:#9A348E"
format = '[$user ]($style)' format = '[$user ]($style)'
@@ -127,6 +130,11 @@ symbol = "󰆥 "
style = "bg:#86BBD8" style = "bg:#86BBD8"
format = '[ $symbol ($version) ]($style)' format = '[ $symbol ($version) ]($style)'
[python]
symbol = " "
style = "bg:#86BBD8"
format = '[ $symbol ($virtualenv) ]($style)'
[rust] [rust]
symbol = "" symbol = ""
style = "bg:#86BBD8" style = "bg:#86BBD8"
@@ -137,8 +145,13 @@ symbol = " "
style = "bg:#86BBD8" style = "bg:#86BBD8"
format = '[ $symbol ($version) ]($style)' format = '[ $symbol ($version) ]($style)'
[cmd_duration]
min_time = 2000
format = ' $duration ($style)'
[time] [time]
disabled = false disabled = false
time_format = "%R" # Hour:Minute Format # time_format = "%R" # Hour:Minute Format
time_format = "%T" # Hour:Minute:Second Format
style = "bg:#33658A" style = "bg:#33658A"
format = '[ $time ]($style)' format = '[ $time ]($style)'