summaryrefslogtreecommitdiff
path: root/users/seth/programs/starship.nix
blob: 03af3a7b7eeb55562a58f050313bd42dc95b8f4d (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
30
31
{ config, ...}:

{
	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
			""";
		};
	};
}