getskype(): make it compatible with final skype 1.4 version
[grml-etc-core.git] / etc / skel / .hgrc
1 # Filename:      $HOME/.hgrc
2 # Purpose:       configuration file for mercurial
3 # Authors:       grml-team (grml.org), (c) Michael Prokop <mika@grml.org>
4 # Bug-Reports:   see http://grml.org/bugs/
5 # License:       This file is licensed under the GPL v2.
6 # Latest change: Mon Okt 23 00:06:34 CEST 2006 [mika]
7 ################################################################################
8
9 # See 'man 5 hgrc' and http://www.selenic.com/mercurial/hgrc.5.html
10 # for more details about possibilities for configuration of mercurial.
11
12 [ui]
13 username = grml User <repos@grml.org.invalid>
14 # debug = true
15 # verbose = true
16 # merge = hgmergevim
17
18 # useful for patchbomb extension (e.g.: 'hg email -t grml@localhost tip')
19 [email]
20 from = grml User <grml@localhost>
21 method = /usr/sbin/sendmail
22
23 # Extension stuff, see /etc/mercurial/hgrc.d/hgext.rc
24 # and http://www.selenic.com/mercurial/wiki/index.cgi/ExtensionHowto
25
26 [extensions]
27
28 # Hooks to control commit access to parts of a tree.
29 # acl=/usr/share/python-support/mercurial/hgext/acl.py
30
31 # Update Bugzilla bugs when changesets mention them (> 0.9-1).
32 # bugzilla = /home/grml/mercurial-snapshot/hgext/bugzilla.py
33
34 # Graph amount of code changed per author over time (> 0.9-1).
35 # churn = /home/grml/mercurial-snapshot/contrib/churn.py
36 # churn =
37
38 # Extension for using an external program to diff repository (or
39 # selected files). Available in 0.9.1.
40 # extdiff=/usr/share/python-support/mercurial/hgext/extdiff.py
41 hgext.extdiff=
42
43 # Convenience wrapper for pulling and merging.
44 # fetch =
45
46 # Extension that provides commands to help working with trees
47 # composed of many Mercurial repositories. See
48 # http://www.terminus.org/hg/hgforest
49 # forest =
50
51 # Extension for signing and checking signatures.
52 # gpg=/usr/share/python-support/mercurial/hgext/gpg.py
53 # gpg=
54
55 # Extension for binary searching in O(log2(n)) for the changeset
56 # introducing a (mis)feature, see
57 # http://www.selenic.com/mercurial/wiki/index.cgi/UsingBisect
58 # hbisect=/usr/share/python-support/mercurial/hgext/hbisect.py
59
60 # Graphical gitk-like repository browser, invoked with hg view.
61 # hgk=/usr/share/python-support/mercurial/hgext/hgk.py
62
63 # Mercurial Queue management extension - see
64 # http://www.selenic.com/mercurial/wiki/index.cgi/MqExtension
65 # mq=/usr/share/python-support/mercurial/hgext/mq.py
66
67 # Template-driven email notifications, see
68 # http://www.selenic.com/mercurial/wiki/index.cgi/NotifyExtension
69 # notify=/usr/share/python-support/mercurial/hgext/notify.py
70 # hgext.notify = 
71
72 # Extension providing the hg email command for sending a collection of
73 # Mercurial changesets as a series of patch emails.
74 # patchbomb=/usr/share/python-support/mercurial/hgext/patchbomb.py
75
76 # Cherry-picking, rebasing and changeset rewriting - see
77 # http://www.selenic.com/mercurial/wiki/index.cgi/TransplantExtension
78 # transplant =
79
80 # Extension for line ending conversion filters for the Windows platform.
81 # win32text=/usr/share/python-support/mercurial/hgext/win32text.py
82
83 [extdiff]
84 # DirDiff script for Vim: http://www.vim.org/scripts/script.php?script_id=102
85 # wget http://www.vim.org/scripts/download_script.php?src_id=5306 -O ~/.vim/plugin/DirDiff.vim
86 # Notice: opts.* works only in Mercurial >0.9.1, use hgvimdiff as wrapper therefore
87 cmd.vimdiff=/usr/bin/hgvimdiff
88 # cmd.vimdiff=/usr/bin/vim.basic
89 # opts.vimdiff=-f '+next' '+execute "DirDiff" argv(0) argv(1)'
90
91 # vim: ft=config