Comprehensive shell environment setup for CachyOS/Arch Linux featuring: - Modern CLI tools: eza, bat, fd, ripgrep, fzf, zoxide, dust, duf, procs, btop, sd, delta - Development tools: neovim (NvChad), lazygit, starship, yazi, zellij, navi - Shell: zsh with oh-my-zsh, syntax highlighting, autosuggestions - Terminal: Ghostty configuration - Dracula theme: Consistent theming across all tools - Fonts: JetBrains Mono Nerd Font (all variants) - Configs: starship, zellij, yazi, fastfetch, ghostty - Dotfiles: .zshrc, .bashrc, zsh completions Automated installation script handles all dependencies and configuration.
218 lines
4.2 KiB
TOML
218 lines
4.2 KiB
TOML
command_timeout = 3600
|
||
|
||
"$schema" = 'https://starship.rs/config-schema.json'
|
||
|
||
add_newline = false
|
||
|
||
format = """
|
||
➜\
|
||
$directory\
|
||
${custom.giturl}\
|
||
$git_branch\
|
||
$git_state\
|
||
$git_status\
|
||
$line_break\
|
||
$character
|
||
"""
|
||
right_format = """$python$nodejs$rust$golang$java$php$c$kotlin$haskell$docker_context"""
|
||
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"
|
||
|
||
# [palettes.custom]
|
||
# rosewater = "#f5e0dc"
|
||
# flamingo = "#eb6f92"
|
||
# pink = "#f5c2e7"
|
||
# orange = "#cba6f7"
|
||
# color_red = '#cc241d'
|
||
# red = "#f38ba8"
|
||
# maroon = "#eba0ac"
|
||
# peach = "#fab387"
|
||
# yellow = "#f9e2af"
|
||
# green = "#a6e3a1"
|
||
# teal = "#94e2d5"
|
||
# sky = "#89dceb"
|
||
# sapphire = "#74c7ec"
|
||
# blue = "#89b4fa"
|
||
# lavender = "#b4befe"
|
||
# foam = "#9ccfd8"
|
||
# pine = "#31748f"
|
||
# gold = "#f6c177"
|
||
# rose = "#ebbcba"
|
||
# text = "#cdd6f4"
|
||
# subtext1 = "#bac2de"
|
||
# subtext0 = "#a6adc8"
|
||
# overlay2 = "#9399b2"
|
||
# overlay1 = "#7f849c"
|
||
# overlay0 = "#6c7086"
|
||
# surface2 = "#585b70"
|
||
# surface1 = "#45475a"
|
||
# surface0 = "#313244"
|
||
# base = "#1e1e2e"
|
||
# mantle = "#181825"
|
||
# crust = "#11111b"
|
||
|
||
[os.symbols]
|
||
Windows = ""
|
||
Ubuntu = ""
|
||
SUSE = ""
|
||
Raspbian = ""
|
||
Mint = ""
|
||
Macos = " "
|
||
Manjaro = ""
|
||
Linux = ""
|
||
Gentoo = ""
|
||
Fedora = ""
|
||
Alpine = ""
|
||
Amazon = ""
|
||
Android = ""
|
||
Arch = ""
|
||
Artix = ""
|
||
CentOS = ""
|
||
Debian = ""
|
||
Redhat = ""
|
||
RedHatEnterprise = ""
|
||
|
||
[username]
|
||
#show_always = true
|
||
#style_user = "bg:surface0 fg:text"
|
||
#style_root = "bg:surface0 fg:text"
|
||
#format = '[ $user ]($style)'
|
||
|
||
[directory]
|
||
style = "sapphire"
|
||
format = "[ $path ]($style)"
|
||
#truncation_length = 4
|
||
#truncation_symbol = "…/"
|
||
|
||
[directory.substitutions]
|
||
"Documents" = " "
|
||
"Downloads" = " "
|
||
"Music" = " "
|
||
"Pictures" = " "
|
||
"Developer" = " "
|
||
|
||
[os]
|
||
disabled = true
|
||
#style = "bg:surface0 fg:text"
|
||
|
||
[custom.giturl]
|
||
# disabled = true
|
||
description = "Display symbol for remote Git server"
|
||
command = """
|
||
GIT_REMOTE=$(command git ls-remote --get-url 2> /dev/null)
|
||
if [[ "$GIT_REMOTE" =~ "github" ]]; then
|
||
GIT_REMOTE_SYMBOL=" "
|
||
elif [[ "$GIT_REMOTE" =~ "gitlab" ]]; then
|
||
GIT_REMOTE_SYMBOL=" "
|
||
elif [[ "$GIT_REMOTE" =~ "bitbucket" ]]; then
|
||
GIT_REMOTE_SYMBOL=" "
|
||
elif [[ "$GIT_REMOTE" =~ "git" ]]; then
|
||
GIT_REMOTE_SYMBOL=" "
|
||
else
|
||
GIT_REMOTE_SYMBOL=" "
|
||
fi
|
||
echo "$GIT_REMOTE_SYMBOL "
|
||
"""
|
||
when = 'git rev-parse --is-inside-work-tree 2> /dev/null'
|
||
format = "at $output"
|
||
|
||
[git_branch]
|
||
symbol = "[](black) "
|
||
# format = ' [$symbol$branch(:$remote_branch)]($style)[]'
|
||
style = "fg:lavender bg:black"
|
||
format = ' on [$symbol$branch]($style)[](black)'
|
||
|
||
[git_status]
|
||
format = '[ $symbol($version) ]($style)'
|
||
|
||
[nodejs]
|
||
symbol = ""
|
||
format = '[ $symbol($version) ]($style)'
|
||
|
||
[c]
|
||
symbol = " "
|
||
format = '[ $symbol($version) ]($style)'
|
||
|
||
[rust]
|
||
symbol = ""
|
||
format = '[ $symbol($version) ]($style)'
|
||
|
||
[golang]
|
||
symbol = ""
|
||
format = '[ $symbol($version) ]($style)'
|
||
detect_files = ["go.mod"]
|
||
|
||
[php]
|
||
symbol = ""
|
||
format = '[ $symbol($version) ]($style)'
|
||
|
||
[java]
|
||
symbol = " "
|
||
format = '[ $symbol($version) ]($style)'
|
||
|
||
[kotlin]
|
||
symbol = ""
|
||
|
||
format = '[ $symbol($version) ]($style)'
|
||
|
||
[haskell]
|
||
symbol = ""
|
||
|
||
format = '[ $symbol($version) ]($style)'
|
||
|
||
[python]
|
||
symbol = ""
|
||
|
||
format = '[ $symbol($version) ]($style)'
|
||
|
||
|
||
[docker_context]
|
||
symbol = ""
|
||
format = '[ $symbol($version) ]($style)'
|
||
|
||
[time]
|
||
disabled = true
|
||
time_format = "%R"
|
||
style = "bg:peach"
|
||
format = '[[ $time ](fg:mantle bg:foam)]($style)'
|
||
|
||
[line_break]
|
||
disabled = true
|
||
|
||
[character]
|
||
disabled = false
|
||
success_symbol = '[𝘹](bold fg:green)'
|
||
error_symbol = '[𝘹](bold fg:red)'
|
||
vimcmd_symbol = '[](bold fg:creen)'
|
||
vimcmd_replace_one_symbol = '[](bold fg:purple)'
|
||
vimcmd_replace_symbol = '[](bold fg:purple)'
|
||
vimcmd_visual_symbol = '[](bold fg:lavender)'
|
||
|
||
|