diff sample-config/hgrc-basic @ 9:e3783841a9ff

Move configs and tasks to subdirs
author Jordi Gutiérrez Hermoso <jordigh@octave.org>
date Fri, 07 Nov 2014 12:28:04 -0500
parents hgrc-basic@5b2d9e3d58c6
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/sample-config/hgrc-basic	Fri Nov 07 12:28:04 2014 -0500
@@ -0,0 +1,57 @@
+[ui]
+# Your name and email, e.g.
+# username = Jane Doe <jdoe@example.com>
+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=
+
+# 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
+
+# These are basic ANSI colours (i.e. not very colourful)
+[color]
+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 = yellow
+log.description = yellow
+log.bookmark = green
+log.tag = yellow
+log.graph = blue
+
+changeset.public = red bold
+changeset.draft = yellow
+changeset.secret = blue
+
+qdesc.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