summaryrefslogtreecommitdiff
path: root/users/seth/programs/starship.nix
blob: 7c213cf01ec562d74c040bcc7632800d1ab2b296 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
_: {
  programs.starship = {
    enable = false;
    settings = {
      format = "" "
				$username\
				$hostname\
				$directory\
				$vcsh\
				$git_branch\
				$git_commit\
				$git_state\
				$git_metrics\
				$git_status\
				$docker_context\
				$nix_shell\
				$env_var\
				$sudo\
				$cmd_duration\
				$line_break\
				$jobs\
				$status\
				$container\
				$shell\
				$character
			" "";
    };
  };
}