home

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit 26b742b084c1a021b48f309977b91867510d16b2
parent 74ae80a1a94884b0eba9d65cc92ef40f252c6015
Author: Vincent Demeester <vincent@sbr.pm>
Date:   Sun,  3 May 2020 16:04:27 +0200

git.nix: use color.{name} instead of…

… using escaped string

Signed-off-by: Vincent Demeester <vincent@sbr.pm>

Diffstat:
Mmodules/profiles/git.nix | 6+++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/modules/profiles/git.nix b/modules/profiles/git.nix @@ -72,18 +72,18 @@ in ui = "auto"; sh = "auto"; }; - "color \"branch\"" = { + "color.branch" = { current = "cyan reverse"; local = "cyan"; remote = "green"; }; - "color \"diff\"" = { + "color.diff" = { current = "white reverse"; frag = "magenta reverse"; old = "red"; new = "green"; }; - "color \"status\"" = { + "color.status" = { added = "green"; changed = "yellow"; untracked = "red";