Skip to content

Commit

Permalink
jq: Use default upstream values for colors (#1870)
Browse files Browse the repository at this point in the history
  • Loading branch information
Dany Marcoux authored Mar 18, 2021
1 parent de1fa8d commit f9b5172
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions modules/programs/jq.nix
Original file line number Diff line number Diff line change
Expand Up @@ -51,12 +51,12 @@ in {

default = {
null = "1;30";
false = "0;39";
true = "0;39";
numbers = "0;39";
false = "0;37";
true = "0;37";
numbers = "0;37";
strings = "0;32";
arrays = "1;39";
objects = "1;39";
arrays = "1;37";
objects = "1;37";
};

type = colorsType;
Expand Down

0 comments on commit f9b5172

Please sign in to comment.