From 42be997a9eb95fde0e1806f100ca4b8d463b5d05 Mon Sep 17 00:00:00 2001 From: Justine Smithies Date: Tue, 22 Aug 2023 19:49:10 +0100 Subject: Initial commit --- .config/starship/config.toml | 102 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 102 insertions(+) create mode 100755 .config/starship/config.toml (limited to '.config/starship') diff --git a/.config/starship/config.toml b/.config/starship/config.toml new file mode 100755 index 0000000..fd14b68 --- /dev/null +++ b/.config/starship/config.toml @@ -0,0 +1,102 @@ +# starship config.toml + +# Use custom format +format = """ +[╭─](bold blue)$username\ +$hostname\ +$shlvl\ +$kubernetes\ +$directory\ +$git_branch\ +$git_commit\ +$git_state\ +$git_status\ +$hg_branch\ +$docker_context\ +$package\ +$cmake\ +$dart\ +$dotnet\ +$elixir\ +$elm\ +$erlang\ +$golang\ +$helm\ +$java\ +$julia\ +$kotlin\ +$nim\ +$nodejs\ +$ocaml\ +$perl\ +$php\ +$purescript\ +$python\ +$ruby\ +$rust\ +$scala\ +$swift\ +$terraform\ +$vagrant\ +$zig\ +$nix_shell\ +$conda\ +$memory_usage\ +$aws\ +$gcloud\ +$openstack\ +$env_var\ +$crystal\ +$custom\ +$cmd_duration\ +$line_break\ +$lua\ +$time\ +$status\ +$shell\ +[╰>](bold blue) """ + +# Wait 10 milliseconds for starship to check files under the current directory. +scan_timeout = 10 + +# Disable the blank line at the start of the prompt +add_newline = false + +[username] +style_user = "green bold" +style_root = "red bold" +format = "(bold green)[$user]($style)" +disabled = false +show_always = true + +[hostname] +ssh_only = false +format = "[@$hostname ](green bold)" +disabled = false + +[directory] +read_only = " 🔒" +read_only_style = "fg:blue bold" +style = "blue bold" +format = "[$path ]($style)[$read_only]($read_only_style)" + +[git_branch] +symbol = " " +always_show_remote = false +format = "[on $symbol$branch]($style) " +style = "purple bold" +only_attached = false +disabled = false + +[git_status] +conflicted = "🏳" +ahead = "🏎💨" +behind = "😰" +diverged = "😵" +up_to_date = "[✓](green)" +untracked = "($count) Untracked files " +stashed = "📦" +modified = "📝" +staged = '[++\($count\)](green)' +renamed = "👅" +deleted = "🗑" -- cgit v1.2.3