diff options
Diffstat (limited to 'home/core/starship.nix')
-rw-r--r-- | home/core/starship.nix | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/home/core/starship.nix b/home/core/starship.nix new file mode 100644 index 0000000..8465f54 --- /dev/null +++ b/home/core/starship.nix @@ -0,0 +1,23 @@ +{ + programs.starship = { + enable = true; + + settings = { + directory = { + truncate_to_repo = false; + truncation_symbol = "…"; + }; + + command_timeout = 2000; + + gcloud = { + disabled = true; + }; + + kubernetes = { + disabled = false; + format = "[$symbol$context(/$namespace)]($style) in "; + }; + }; + }; +} |