# HG changeset patch # User Jordi GutiƩrrez Hermoso # Date 1415311447 18000 # Node ID 686c15b59a308c9081cab69cff88833a04ade43a # Parent ddd9bded7d0f0df3c034969a91bae25db08f39c2 Add hgrc-256color diff -r ddd9bded7d0f -r 686c15b59a30 hgrc-256color --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/hgrc-256color Thu Nov 06 17:04:07 2014 -0500 @@ -0,0 +1,77 @@ +[ui] +# Your name and email, e.g. +# username = Jane Doe +username = + +# Your editor of choice, e.g. Emacs, vim, Notepad++, TextMate... +# editor = emacs +editor = + +# Some useful aliases +[alias] +glog=log -G + + +[extensions] +# Basic useful extensions. These are all safe. +color= +progress= +pager = +record= + +# Careful! Some of these extensions are a bit dangerous if you don't +# understand what they are doing. +strip= +rebase= +shelve= +histedit= + +# The purge extension is *very* dangerous. It deletes all of your +# untracked files. Use with care! +purge= + + +# The pager needs some extra config to work right... +[pager] +pager = LESS='FSRX' less +attend = tags, help, annotate, cat, diff, export, status,\ + outgoing, incoming, glog, log, grep, sl, pvr, wip + +# This makes diffs show more information +[diff] +git = true +showfunc = 1 + +# This defines my custom xterm-256 colours. +[color] +mode=terminfo +color.orange = 202 +color.lightyellow = 191 +color.darkorange = 220 +color.brightyellow = 226 + +status.modified = magenta bold +status.added = green bold +status.removed = red bold +status.deleted = cyan bold +status.unknown = black bold +status.ignored = black bold +log.branch = cyan +log.summary = lightyellow +log.description = lightyellow +log.bookmark = green +log.tag = darkorange +log.graph = blue + +changeset.public = orange bold +changeset.secret = blue bold +changeset.draft = brightyellow bold + +diff.tab = bold magenta_background + +desc.here = bold blue_background + +# I push and pull a lot with local clones, so don't make my local +# clones publish those commits. +[phases] +publish = False