The general configuration of my development environment and many other general computer things.
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Change starship theme

dekker.one e9f97609 96e11ec3

verified
+65 -1
+64
shared/config/starship-tokyo-night.toml
··· 1 + format = """ 2 + [░▒▓](#a3aed2)\ 3 + [  ](bg:#a3aed2 fg:#090c0c)\ 4 + [](bg:#769ff0 fg:#a3aed2)\ 5 + $directory\ 6 + [](fg:#769ff0 bg:#394260)\ 7 + $git_branch\ 8 + $git_status\ 9 + [](fg:#394260 bg:#212736)\ 10 + $nodejs\ 11 + $rust\ 12 + $golang\ 13 + $php\ 14 + [](fg:#212736 bg:#1d2230)\ 15 + $time\ 16 + [ ](fg:#1d2230)\ 17 + \n$character""" 18 + 19 + [directory] 20 + style = "fg:#e3e5e5 bg:#769ff0" 21 + format = "[ $path ]($style)" 22 + truncation_length = 3 23 + truncation_symbol = "…/" 24 + 25 + [directory.substitutions] 26 + "Documents" = "󰈙 " 27 + "Downloads" = " " 28 + "Music" = " " 29 + "Pictures" = " " 30 + 31 + [git_branch] 32 + symbol = "" 33 + style = "bg:#394260" 34 + format = '[[ $symbol $branch ](fg:#769ff0 bg:#394260)]($style)' 35 + 36 + [git_status] 37 + style = "bg:#394260" 38 + format = '[[($all_status$ahead_behind )](fg:#769ff0 bg:#394260)]($style)' 39 + 40 + [nodejs] 41 + symbol = "" 42 + style = "bg:#212736" 43 + format = '[[ $symbol ($version) ](fg:#769ff0 bg:#212736)]($style)' 44 + 45 + [rust] 46 + symbol = "" 47 + style = "bg:#212736" 48 + format = '[[ $symbol ($version) ](fg:#769ff0 bg:#212736)]($style)' 49 + 50 + [golang] 51 + symbol = "" 52 + style = "bg:#212736" 53 + format = '[[ $symbol ($version) ](fg:#769ff0 bg:#212736)]($style)' 54 + 55 + [php] 56 + symbol = "" 57 + style = "bg:#212736" 58 + format = '[[ $symbol ($version) ](fg:#769ff0 bg:#212736)]($style)' 59 + 60 + [time] 61 + disabled = false 62 + time_format = "%R" # Hour:Minute Format 63 + style = "bg:#1d2230" 64 + format = '[[  $time ](fg:#a0a9cb bg:#1d2230)]($style)'
+1 -1
shared/home-manager.nix
··· 191 191 192 192 starship = { 193 193 enable = true; 194 - settings = (with builtins; fromTOML (readFile ./config/starship-jetpack.toml)) // { 194 + settings = (with builtins; fromTOML (readFile ./config/starship-tokyo-night.toml)) // { 195 195 # Overrides 196 196 }; 197 197 };