-
-
Save matagus/431474 to your computer and use it in GitHub Desktop.
colorize your hg output <3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[extensions] | |
# enable color extension | |
color = | |
# enable extdiff extension (Extended Diff) | |
hgext.extdiff = | |
[extdiff] | |
# configure extended diff to use colordiff (requires colordiff installed in your system) | |
cmd.cdiff = colordiff | |
opts.cdiff = -uprN | |
[color] | |
# configure colors for each possible hg status | |
status.modified = blue bold | |
status.added = green bold | |
status.removed = red bold | |
status.deleted = cyan bold | |
status.unknown = magenta bold | |
status.ignored = white bold | |
# and for hg diff output also | |
diff.diffline = bold | |
diff.extended = cyan bold | |
diff.file_a = red bold | |
diff.file_b = green bold | |
diff.hunk = magenta | |
diff.deleted = red | |
diff.inserted = green | |
diff.changed = white | |
diff.trailingwhitespace = bold red_background | |
[defaults] | |
# suppress noisy extdiff header message | |
cdiff = -q |
thank you!
Exactly what I was looking for. Thanks.
Sweet, thanks dude!
Cool, Thanks !
Thank you.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Cool stuff man, thanks for sharing! :)