summaryrefslogtreecommitdiff
path: root/users/seth/programs/starship.nix
blob: 5c50b4bf74daec15f2f4afa7994735105df7ad69 (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
			" "";
		};
	};
}