From c6cb57f9d14d2e7f799a445ebe8b10cd696bd11f Mon Sep 17 00:00:00 2001 From: Francesco Date: Fri, 9 Jan 2026 11:26:17 +0100 Subject: [PATCH] feat(starship): add starship.toml --- starship.toml | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 starship.toml diff --git a/starship.toml b/starship.toml new file mode 100644 index 0000000..cd63bab --- /dev/null +++ b/starship.toml @@ -0,0 +1,42 @@ +add_newline = false +format = """ +$username$directory$git_branch$character +""" + +[character] +success_symbol = "[➜](bold green)" +error_symbol = "[➜](bold red)" + +[username] +show_always = true +format = "[$user](bold cyan) " + +[directory] +truncation_length = 3 +style = "bold white" +format = "[$path]($style) " + +[git_branch] +format = "([$branch]) " +style = "bold purple" + +[battery] +disabled = true + +[jobs] +disabled = true + +[package] +disabled = true + +[conda] +disabled = true + +[time] +disabled = true + +[hostname] +disabled = true + +[env_var] +disabled = true