diff options
| author | DemonKingSwarn <rockingswarn@gmail.com> | 2026-04-20 12:33:27 +0530 |
|---|---|---|
| committer | DemonKingSwarn <rockingswarn@gmail.com> | 2026-04-20 12:33:27 +0530 |
| commit | b9b4172616ce80d88f453065bb3bdaf2363b8bb3 (patch) | |
| tree | 01f81899f38485d506ccd68be75e24aa76d02b14 /config/starship.nix | |
| parent | 37a9ac7ddc3c24de5736f96c772a35a4adb48ec3 (diff) | |
| download | odysseus-b9b4172616ce80d88f453065bb3bdaf2363b8bb3.zip odysseus-b9b4172616ce80d88f453065bb3bdaf2363b8bb3.tar.gz | |
more configs
Diffstat (limited to 'config/starship.nix')
| -rw-r--r-- | config/starship.nix | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/config/starship.nix b/config/starship.nix new file mode 100644 index 0000000..500a0cd --- /dev/null +++ b/config/starship.nix @@ -0,0 +1,55 @@ +{ ... }: + +{ + xdg.enable = true; + + programs.starship = { + enable = true; + settings = { + add_newline = true; + command_timeout = 100000000; + + line_break = { + disabled = true; + }; + + package = { + disabled = true; + }; + + aws = { + style = "bold #ffb86c"; + }; + + character = { + error_symbol = "[❯](bold #ff5555)"; + success_symbol = "[❯](bold #50fa7b)"; + }; + + cmd_duration = { + style = "bold #f1fa8c"; + }; + + directory = { + style = "bold #50fa7b"; + }; + + git_branch = { + style = "bold #ff79c6"; + }; + + git_status = { + style = "bold #ff5555"; + }; + + hostname = { + style = "bold #bd93f9"; + }; + + username = { + format = "[$user]($style) on "; + style_user = "bold #8be9fd"; + }; + }; + }; +} |
