summaryrefslogtreecommitdiff
path: root/config/starship.toml
diff options
context:
space:
mode:
authorSanto Cariotti <santo@dcariotti.me>2021-12-08 11:52:16 +0100
committerSanto Cariotti <santo@dcariotti.me>2021-12-08 11:52:16 +0100
commit956df69d7496081db5e7b3621a0bcc7b9d7f7dfc (patch)
tree2c1de01541d70d1cbcb59974e42102440359f153 /config/starship.toml
parent1eca5dc0fe3648341e1707efc811162fc5056888 (diff)
move to .config folder
Diffstat (limited to 'config/starship.toml')
-rw-r--r--config/starship.toml23
1 files changed, 0 insertions, 23 deletions
diff --git a/config/starship.toml b/config/starship.toml
deleted file mode 100644
index 344b069..0000000
--- a/config/starship.toml
+++ /dev/null
@@ -1,23 +0,0 @@
-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 $?); """
-
-[custom.ssh_keys]
-description = "SSH key count"
-when = "ssh-add -l | grep -v -q 'no identities'"
-command = "ssh-add -l | grep -v 'no identities' | wc -l"
-format = "$symbol[$output]($style) "
-shell = ["bash", "--noprofile", "--norc"]
-symbol = "🔑"
-style = "bold fg:green"