Mercurial > dotfiles
annotate .hgrc @ 20:a7d20c040af0
Don't use black for ignored files since I have a black terminal background.
author | Augie Fackler <durin42@gmail.com> |
---|---|
date | Tue, 09 Dec 2008 11:27:10 -0600 |
parents | a757a99bc885 |
children | b465892f75e4 |
rev | line source |
---|---|
0 | 1 [extensions] |
9
a6581f7a5b1a
Enable the color extension for hg.
Augie Fackler <durin42@gmail.com>
parents:
2
diff
changeset
|
2 hgext.color= |
0 | 3 hgext.convert= |
15
a757a99bc885
Add purge extension and sort the extension list.
Augie Fackler <durin42@gmail.com>
parents:
9
diff
changeset
|
4 hgext.graphlog= |
a757a99bc885
Add purge extension and sort the extension list.
Augie Fackler <durin42@gmail.com>
parents:
9
diff
changeset
|
5 hgext.hgk= |
a757a99bc885
Add purge extension and sort the extension list.
Augie Fackler <durin42@gmail.com>
parents:
9
diff
changeset
|
6 hgext.mq= |
0 | 7 hgext.parentrevspec= |
15
a757a99bc885
Add purge extension and sort the extension list.
Augie Fackler <durin42@gmail.com>
parents:
9
diff
changeset
|
8 hgext.patchbomb= |
a757a99bc885
Add purge extension and sort the extension list.
Augie Fackler <durin42@gmail.com>
parents:
9
diff
changeset
|
9 hgext.purge= |
0 | 10 hgext.rebase= |
15
a757a99bc885
Add purge extension and sort the extension list.
Augie Fackler <durin42@gmail.com>
parents:
9
diff
changeset
|
11 hgext.record= |
a757a99bc885
Add purge extension and sort the extension list.
Augie Fackler <durin42@gmail.com>
parents:
9
diff
changeset
|
12 hgext.transplant= |
0 | 13 hgext.zeroconf= |
15
a757a99bc885
Add purge extension and sort the extension list.
Augie Fackler <durin42@gmail.com>
parents:
9
diff
changeset
|
14 hgsubversion= |
0 | 15 |
16 [ui] | |
17 username = Augie Fackler <durin42@gmail.com> | |
18 style = compact | |
19 | |
20 [defaults] | |
21 qimport = --git | |
22 qrefresh = --git | |
23 annotate = -nu | |
24 heads = --style default | |
25 serve = -v | |
2
cc09fbf53d4d
Add --graph to default for out/in/log and remove the no-longer-needed glog pref.
Augie Fackler <durin42@gmail.com>
parents:
1
diff
changeset
|
26 log = -l 6 --graph |
cc09fbf53d4d
Add --graph to default for out/in/log and remove the no-longer-needed glog pref.
Augie Fackler <durin42@gmail.com>
parents:
1
diff
changeset
|
27 outgoing = --graph |
cc09fbf53d4d
Add --graph to default for out/in/log and remove the no-longer-needed glog pref.
Augie Fackler <durin42@gmail.com>
parents:
1
diff
changeset
|
28 incoming = --graph |
0 | 29 diff = -p |
30 | |
31 [diff] | |
32 git=1 | |
33 | |
34 [web] | |
35 style = gitweb | |
36 port=7000 | |
37 allow_archive = bz2 zip | |
38 | |
20
a7d20c040af0
Don't use black for ignored files since I have a black terminal background.
Augie Fackler <durin42@gmail.com>
parents:
15
diff
changeset
|
39 [color] |
a7d20c040af0
Don't use black for ignored files since I have a black terminal background.
Augie Fackler <durin42@gmail.com>
parents:
15
diff
changeset
|
40 status.ignored = magenta bold |
a7d20c040af0
Don't use black for ignored files since I have a black terminal background.
Augie Fackler <durin42@gmail.com>
parents:
15
diff
changeset
|
41 |
0 | 42 [paths] |
43 hgcrew = http://hg.intevation.org/mercurial/crew | |
44 hgbookmarks = http://www.bitbucket.org/segv/hgbookmarks | |
45 hgsubv = https://durin42@bitbucket.org/durin42/hgsubversion | |
46 | |
47 [hooks] | |
48 # Prevent "hg pull" if MQ patches are applied. | |
49 #prechangegroup.mq-no-pull = ! hg qtop > /dev/null 2>&1 | |
50 # Prevent "hg push" if MQ patches are applied. | |
51 #preoutgoing.mq-no-push = ! hg qtop > /dev/null 2>&1 |