diff options
| author | Maciej Sobkowski <maciej@sobkow.ski> | 2025-10-31 14:19:01 +0100 |
|---|---|---|
| committer | Maciej Sobkowski <maciej@sobkow.ski> | 2025-11-03 08:49:35 +0100 |
| commit | 768a6c7d841dc470e50c165e9eb6c21c3aabb84a (patch) | |
| tree | eab39571ea6758e7fcc83a2d70be577a7cad75b7 /.config | |
| parent | b73f5b051f8227c47fafc0bc328fc62fdcd64309 (diff) | |
starship: set tokyo-night theme
Generated with:
```
starship preset tokyo-night -o ~/.config/starship.toml
```
Diffstat (limited to '.config')
| -rw-r--r-- | .config/starship.toml | 75 |
1 files changed, 58 insertions, 17 deletions
diff --git a/.config/starship.toml b/.config/starship.toml index c7ea4f5..4972a7b 100644 --- a/.config/starship.toml +++ b/.config/starship.toml @@ -1,23 +1,64 @@ -# Get editor completions based on the config schema -"$schema" = 'https://starship.rs/config-schema.json' +format = """ +[░▒▓](#a3aed2)\ +[ ](bg:#a3aed2 fg:#090c0c)\ +[](bg:#769ff0 fg:#a3aed2)\ +$directory\ +[](fg:#769ff0 bg:#394260)\ +$git_branch\ +$git_status\ +[](fg:#394260 bg:#212736)\ +$nodejs\ +$rust\ +$golang\ +$php\ +[](fg:#212736 bg:#1d2230)\ +$time\ +[ ](fg:#1d2230)\ +\n$character""" -# Inserts a blank line between shell prompts -add_newline = true +[directory] +style = "fg:#e3e5e5 bg:#769ff0" +format = "[ $path ]($style)" +truncation_length = 3 +truncation_symbol = "…/" -[character] -success_symbol = '[➜](bold green) ' -error_symbol = '[✖](bold red) ' +[directory.substitutions] +"Documents" = " " +"Downloads" = " " +"Music" = " " +"Pictures" = " " -# Disable the package module, hiding it from the prompt completely -[package] -disabled = true +[git_branch] +symbol = "" +style = "bg:#394260" +format = '[[ $symbol $branch ](fg:#769ff0 bg:#394260)]($style)' -[status] -symbol = '🔴 ' -format = '[\[$symbol$common_meaning$signal_name$maybe_int\]]($style) ' -disabled = false +[git_status] +style = "bg:#394260" +format = '[[($all_status$ahead_behind )](fg:#769ff0 bg:#394260)]($style)' + +[nodejs] +symbol = "" +style = "bg:#212736" +format = '[[ $symbol ($version) ](fg:#769ff0 bg:#212736)]($style)' + +[rust] +symbol = "" +style = "bg:#212736" +format = '[[ $symbol ($version) ](fg:#769ff0 bg:#212736)]($style)' + +[golang] +symbol = "" +style = "bg:#212736" +format = '[[ $symbol ($version) ](fg:#769ff0 bg:#212736)]($style)' + +[php] +symbol = "" +style = "bg:#212736" +format = '[[ $symbol ($version) ](fg:#769ff0 bg:#212736)]($style)' -[shell] -fish_indicator = '🐟' -bash_indicator = '🅱️' +[time] disabled = false +time_format = "%R" # Hour:Minute Format +style = "bg:#1d2230" +format = '[[ $time ](fg:#a0a9cb bg:#1d2230)]($style)' |
