diff options
Diffstat (limited to 'config/starship/classic.toml')
| -rw-r--r-- | config/starship/classic.toml | 250 |
1 files changed, 250 insertions, 0 deletions
diff --git a/config/starship/classic.toml b/config/starship/classic.toml new file mode 100644 index 00000000..8dd1645f --- /dev/null +++ b/config/starship/classic.toml @@ -0,0 +1,250 @@ +palette = "catppuccin_mocha" + +[palettes.catppuccin_mocha] +rosewater = "#f5e0dc" +flamingo = "#f2cdcd" +pink = "#f5c2e7" +mauve = "#cba6f7" +red = "#f38ba8" +maroon = "#eba0ac" +peach = "#fab387" +yellow = "#f9e2af" +green = "#a6e3a1" +teal = "#94e2d5" +sky = "#89dceb" +sapphire = "#74c7ec" +blue = "#89b4fa" +lavender = "#b4befe" +text = "#cdd6f4" +subtext1 = "#bac2de" +subtext0 = "#a6adc8" +overlay2 = "#9399b2" +overlay1 = "#7f849c" +overlay0 = "#6c7086" +surface2 = "#585b70" +surface1 = "#45475a" +surface0 = "#313244" +base = "#1e1e2e" +mantle = "#181825" +crust = "#11111b" + +## FIRST LINE/ROW: Info & Status +[username] +format = "[$user]($style)@" +show_always = true +style_root = "bold red" +style_user = "bold mauve" + +[hostname] +disabled = false +format = "[$hostname]($style) in " +ssh_only = false +style = "bold maroon" +ssh_symbol = " " + +[directory] +style = "bold peach" +truncate_to_repo = true +truncation_length = 0 +truncation_symbol = "repo: " +read_only = "" + +[git_metrics] +disabled = false +added_style = 'bold green' +format = '[+$added]($added_style)/[-$deleted]($deleted_style) ' + +[sudo] +disabled = false + +[git_status] +ahead = "${count}" +behind = "${count}" +deleted = "x" +diverged = "${ahead_count}${behind_count}" +style = "text" + +[git_branch] +symbol = " " +style = "bold green" + +[nix_shell] +format = 'via [$symbol(($name))]($style) ' +symbol = " " + +[cmd_duration] +disabled = false +style="bold flamingo" +format = "took [$duration]($style)" +show_milliseconds = true +show_notifications = false +min_time_to_notify = 30_000 + +## SECOND LINE/ROW: Prompt +[battery] +charging_symbol = "" +disabled = true +discharging_symbol = "" +full_symbol = "" + +[[battery.display]] # "bold red" style when capacity is between 0% and 15% +disabled = false +style = "bold red" +threshold = 15 + +[[battery.display]] # "bold peach" style when capacity is between 15% and 50% +disabled = true +style = "bold peach" +threshold = 50 + +[[battery.display]] # "bold green" style when capacity is between 50% and 90% +disabled = true +style = "bold green" +threshold = 90 + +[status] +disabled = false +format = '[\[$symbol$status_common_meaning$status_signal_name$status_maybe_int\]]($style)' +map_symbol = true +pipestatus = true +symbol = "✖" +not_executable_symbol = "" +not_found_symbol = "" +sigint_symbol = "" +signal_symbol = "" + +[os] +disabled = true +format = ' [$symbol]($style)' +style = "bold mauve" + +[character] +error_symbol = "" +success_symbol = "❯(bold green)" + +# SYMBOLS +[git_commit] +tag_symbol = ' ' + +[golang] +symbol = " " + +[guix_shell] +symbol = " " + +[haskell] +symbol = " " + +[haxe] +symbol = " " + +[hg_branch] +symbol = " " + +[java] +symbol = " " + +[julia] +symbol = " " + +[kotlin] +symbol = " " + +[lua] +symbol = " " + +[memory_usage] +symbol = " " + +[meson] +symbol = " " + +[nim] +symbol = " " + +[nodejs] +symbol = " " + +[ocaml] +symbol = " " + +[os.symbols] +Alpaquita = " " +Alpine = " " +AlmaLinux = " " +Amazon = " " +Android = " " +Arch = " " +Artix = " " +CentOS = " " +Debian = " " +DragonFly = " " +Emscripten = " " +EndeavourOS = " " +Fedora = " " +FreeBSD = " " +Garuda = " " +Gentoo = " " +HardenedBSD = " " +Illumos = " " +Kali = " " +Linux = " " +Mabox = " " +Macos = " " +Manjaro = " " +Mariner = " " +MidnightBSD = " " +Mint = " " +NetBSD = " " +NixOS = " " +OpenBSD = " " +openSUSE = " " +OracleLinux = " " +Pop = " " +Raspbian = " " +Redhat = " " +RedHatEnterprise = " " +RockyLinux = " " +Redox = " " +Solus = " " +SUSE = " " +Ubuntu = " " +Unknown = " " +Void = " " +Windows = " " + +[package] +symbol = " " + +[perl] +symbol = " " + +[php] +symbol = " " + +[pijul_channel] +symbol = " " + +[python] +symbol = " " + +[rlang] +symbol = " " + +[ruby] +symbol = " " + +[rust] +symbol = " " + +[scala] +symbol = " " + +[swift] +symbol = " " + +[zig] +symbol = " " + +[gradle] +symbol = " " |
