summaryrefslogtreecommitdiff
path: root/functions/fish_prompt.fish
blob: c90cb7bcc1ff2719dbab715a3b870efde011e9a5 (plain)
1
2
3
4
5
function fish_prompt
	printf '[%s@%s] ' (echo $USER) (cat /etc/hostname)
	printf '%s%s' (set_color red) (pwd)
	printf '%s>: ' (set_color normal)
end