summaryrefslogtreecommitdiff
path: root/config/starship.toml
blob: 42bac546622c561259fc7559823d4d1ff993f32f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
add_newline = false

[directory]
truncation_length = 15
style = "cyan"

[line_break]
disabled = true

[custom.docker]
description = "Shows the docker symbol if the current directory has Dockerfile or docker-compose.yml files"
command = "echo 🐳"
files = ["Dockerfile", "docker-compose.yml", "docker-compose.yaml"]
when = """ command -v docker &> /dev/null; exit (echo $?); """