summaryrefslogtreecommitdiff
path: root/.config/starship.toml
diff options
context:
space:
mode:
authorseraphim <18ycm9tx@anonaddy.me>2026-08-23 18:07:29 +0700
committerseraphim <18ycm9tx@anonaddy.me>2026-08-23 18:07:29 +0700
commited3e8f6ec6929327ab19e512ffb0d8ece12ed5a8 (patch)
treef1a783af87d29b8d78ce20df5a485f92b8c32d5d /.config/starship.toml
parent3c71645d355910b6998e97a1efca6f5a7c7608bc (diff)
reorganize directories, so everything in .config
Diffstat (limited to '.config/starship.toml')
-rw-r--r--.config/starship.toml91
1 files changed, 91 insertions, 0 deletions
diff --git a/.config/starship.toml b/.config/starship.toml
new file mode 100644
index 0000000..ab9064a
--- /dev/null
+++ b/.config/starship.toml
@@ -0,0 +1,91 @@
+palette = "noctalia"
+add_newline = true
+command_timeout = 200
+format = "$username$hostname$character [$directory$git_branch$git_status]($style)"
+
+[username]
+show_always = true
+format = "[$user]($style)"
+style_user = "#8C00FF"
+# style_user = "bold #8C00FF"
+[hostname]
+disabled = false
+ssh_only = false
+format = "[@$hostname]($style)"
+style = "#8C00FF"
+
+[character]
+format = "$symbol" # Removes the default trailing space after #
+error_symbol = "[:~✗](bold red)"
+success_symbol = "[:~#](bold #8C00FF)"
+
+[directory]
+style = "#AA40FF"
+truncation_length = 2
+truncation_symbol = "///"
+repo_root_style = "#AA40FF"
+repo_root_format = "[$repo_root]($repo_root_style)[$path]($style)[$read_only]($read_only_style) "
+
+[git_branch]
+symbol = "> "
+format = "[$symbol$branch]($style) "
+style = "italic #AA40FF"
+
+[git_status]
+format = '[$all_status]($style)'
+style = "purple"
+ahead = "⇡${count} "
+diverged = "⇕⇡${ahead_count}⇣${behind_count} "
+behind = "⇣${count} "
+conflicted = " "
+up_to_date = " "
+untracked = "? "
+modified = " "
+stashed = ""
+staged = ""
+renamed = ""
+deleted = ""
+
+# >>> NOCTALIA STARSHIP PALETTE >>>
+# Noctalia Starship Palette
+# Generated by Noctalia - do not edit manually
+
+[palettes.noctalia]
+# Standard colors
+blue = "#54604a"
+red = "#ba1a1a"
+green = "#645c3f"
+yellow = "#635e50"
+cyan = "#797263"
+magenta = "#7e7252"
+white = "#1d1b19"
+black = "#e9e2d4"
+
+# Extended palette (Catppuccin-compatible names)
+rosewater = "#635e50"
+flamingo = "#ba1a1a"
+pink = "#7e7252"
+mauve = "#7e7252"
+maroon = "#ba1a1a"
+peach = "#635e50"
+teal = "#797263"
+sky = "#797263"
+sapphire = "#54604a"
+lavender = "#7e7252"
+
+# Text shades
+text = "#1d1b19"
+subtext1 = "#1d1b19"
+subtext0 = "#7b776c"
+
+# Surface shades
+overlay2 = "#7b776c"
+overlay1 = "#7b776c"
+overlay0 = "#e9e2d4"
+surface2 = "#e9e2d4"
+surface1 = "#e9e2d4"
+surface0 = "#fef8f4"
+base = "#fef8f4"
+mantle = "#fef8f4"
+crust = "#fef8f4"
+# <<< NOCTALIA STARSHIP PALETTE <<<