aboutsummaryrefslogtreecommitdiffstats
path: root/home/core/starship.nix
blob: 8465f540937dbc9e998d2536dc9e56c948326355 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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 ";
      };
    };
  };
}