summaryrefslogtreecommitdiff
path: root/starship
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 /starship
parent3c71645d355910b6998e97a1efca6f5a7c7608bc (diff)
reorganize directories, so everything in .config
Diffstat (limited to 'starship')
-rw-r--r--starship/.config/starship.toml91
1 files changed, 0 insertions, 91 deletions
diff --git a/starship/.config/starship.toml b/starship/.config/starship.toml
deleted file mode 100644
index ab9064a..0000000
--- a/starship/.config/starship.toml
+++ /dev/null
@@ -1,91 +0,0 @@
-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 <<<