]> ruderich.org/simon Gitweb - config/dotfiles.git/blob - hgrc
Use pager extension with colordiff and less as pager.
[config/dotfiles.git] / hgrc
1 # This is the Mercurial configuration file.
2
3
4 [ui]
5 username = Simon Ruderich <simon@ruderich.org>
6 ignore = ~/.hgignore
7 # Use Apple's FileMerge for merge conflicts.
8 merge = opendiff-merge
9
10 # Use git diffs with support for renames, binaries, access rights, etc.
11 [diff]
12 git = True
13
14 [extensions]
15 # Convert other vcs to mercurial.
16 hgext.convert =
17 # Simplify pull and merge processes.
18 hgext.fetch =
19 # Enable hg view.
20 hgext.hgk =
21 # Patch stack support.
22 hgext.mq =
23 # Use a pager for all output.
24 hgext.pager =
25 # Partial commit utility.
26 hgext.record =
27 # Allows cherry-picking and rebasing.
28 hgext.transplant =
29
30 # Necessary for hg view.
31 [hgk]
32 path = /opt/local/share/mercurial/contrib/hgk
33
34 [hooks]
35 # Precommit hook which runs tests if they exist.
36 precommit = precommit-runtests
37 # Prevent "hg pull" if MQ patches are applied.
38 prechangegroup.mq-no-pull = ! hg qtop > /dev/null 2>&1
39 # Prevent "hg push" if MQ patches are applied.
40 preoutgoing.mq-no-push = ! hg qtop > /dev/null 2>&1
41
42 # Use colordiff and less as pager so that output from diff is colored and
43 # everything is easily readable in a terminal.
44 [pager]
45 pager = colordiff | less
46 ignore = record, qrecord