Mercurial > dotfiles
annotate .hgrc @ 336:ea73ef5dc38c
emacs: avoid weird package.el breakage with newish packages
I've been toting around this package.el from 2009 or so, and something
in the package format seems to have changed that broke me. Thanks to
some related diagnostics by Lucas, I've grabbed the last package.el
that worked with emacs 23 and stashed it here. This seems to work,
modulo some things (notably js2-mode and smex) now seem to require
emacs 24 if you install them using package.el, so this will end up
being brittle on my last couple of emacs23 machines.
author | Augie Fackler <raf@durin42.com> |
---|---|
date | Thu, 29 May 2014 14:30:42 -0400 |
parents | 7a736d851718 |
children | 3f3d52956ff7 |
rev | line source |
---|---|
0 | 1 [extensions] |
21 | 2 hgext.bookmarks= |
9
a6581f7a5b1a
Enable the color extension for hg.
Augie Fackler <durin42@gmail.com>
parents:
2
diff
changeset
|
3 hgext.color= |
0 | 4 hgext.convert= |
36 | 5 hgext.highlight= |
315
fe07e9bdae61
hgrc: histedit is now included with hg
Augie Fackler <raf@durin42.com>
parents:
308
diff
changeset
|
6 hgext.histedit= |
15
a757a99bc885
Add purge extension and sort the extension list.
Augie Fackler <durin42@gmail.com>
parents:
9
diff
changeset
|
7 hgext.mq= |
0 | 8 hgext.parentrevspec= |
15
a757a99bc885
Add purge extension and sort the extension list.
Augie Fackler <durin42@gmail.com>
parents:
9
diff
changeset
|
9 hgext.patchbomb= |
315
fe07e9bdae61
hgrc: histedit is now included with hg
Augie Fackler <raf@durin42.com>
parents:
308
diff
changeset
|
10 hgext.progress= |
15
a757a99bc885
Add purge extension and sort the extension list.
Augie Fackler <durin42@gmail.com>
parents:
9
diff
changeset
|
11 hgext.purge= |
0 | 12 hgext.rebase= |
15
a757a99bc885
Add purge extension and sort the extension list.
Augie Fackler <durin42@gmail.com>
parents:
9
diff
changeset
|
13 hgext.record= |
170
98000a1107bf
hg: enable schemes extension
Augie Fackler <durin42@gmail.com>
parents:
145
diff
changeset
|
14 hgext.schemes= |
326
bfb70ab95398
hg: enable shelve extension
Augie Fackler <raf@durin42.com>
parents:
319
diff
changeset
|
15 hgext.shelve= |
315
fe07e9bdae61
hgrc: histedit is now included with hg
Augie Fackler <raf@durin42.com>
parents:
308
diff
changeset
|
16 hgext.transplant= |
40 | 17 hggit= |
112
57cbf4b59097
This works better for old versions of hggit.
Augie Fackler <durin42@gmail.com>
parents:
100
diff
changeset
|
18 hgsubversion= |
246
74e330570ecb
hg: always enable remotebranches extension
Augie Fackler <durin42@gmail.com>
parents:
245
diff
changeset
|
19 hg_remotebranches= |
0 | 20 |
23
e1caf3e773a8
Need an alias to do log of a named branch
Augie Fackler <durin42@gmail.com>
parents:
21
diff
changeset
|
21 [alias] |
251
c7de7cfb5b2b
hg ll: switch to clever revset for more useful information
Augie Fackler <durin42@gmail.com>
parents:
250
diff
changeset
|
22 ll=log --graph --style compact --limit 6 -r 'sort((::. or bookmark() or heads(upstream())), "-rev")' |
243
5fdca3153e75
hgrc: upstream bookmarks alias
Augie Fackler <durin42@gmail.com>
parents:
239
diff
changeset
|
23 upstream-bookmarks = log -r 'bookmark() and upstream()' --template '{bookmarks}\n' |
250
3a5ce01ccea1
hgrc: add utip alias for finding upstream tip
Augie Fackler <durin42@gmail.com>
parents:
247
diff
changeset
|
24 utip = log -r 'limit(heads(upstream()), 1)' |
265 | 25 egrep = !$HG locate -0 '$2' $3 $4 $5 $6 $7 $8 $9 | xargs -0 egrep -H '$1' |
23
e1caf3e773a8
Need an alias to do log of a named branch
Augie Fackler <durin42@gmail.com>
parents:
21
diff
changeset
|
26 |
244
3fd758a51947
hgrc: two useful aliases for working copy history
Augie Fackler <durin42@gmail.com>
parents:
243
diff
changeset
|
27 wc-out = log -r 'ancestors(.) and not upstream()' |
3fd758a51947
hgrc: two useful aliases for working copy history
Augie Fackler <durin42@gmail.com>
parents:
243
diff
changeset
|
28 wc-email = email -r 'ancestors(.) and not upstream()' |
3fd758a51947
hgrc: two useful aliases for working copy history
Augie Fackler <durin42@gmail.com>
parents:
243
diff
changeset
|
29 |
0 | 30 [ui] |
275 | 31 username = Augie Fackler <raf@durin42.com> |
26 | 32 ignore = ~/.hgglobalignore |
245
74bc570bff86
hgrc: enable new http support if available
Augie Fackler <durin42@gmail.com>
parents:
244
diff
changeset
|
33 usehttp2=true |
0 | 34 |
35 [defaults] | |
36 qimport = --git | |
37 qrefresh = --git | |
38 annotate = -nu | |
39 heads = --style default | |
40 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
|
41 outgoing = --graph |
86
68f53fa09e99
Moving all clojure stuff to a more self-contained area.
Augie Fackler <durin42@gmail.com>
parents:
78
diff
changeset
|
42 # --graph is breaking incoming, need to investigate |
68f53fa09e99
Moving all clojure stuff to a more self-contained area.
Augie Fackler <durin42@gmail.com>
parents:
78
diff
changeset
|
43 # incoming = --graph |
0 | 44 diff = -p |
45 | |
46 [diff] | |
47 git=1 | |
48 | |
205
226d1ac6acb6
hgrc: enable track.current for bookmarks
Augie Fackler <durin42@gmail.com>
parents:
187
diff
changeset
|
49 [bookmarks] |
226d1ac6acb6
hgrc: enable track.current for bookmarks
Augie Fackler <durin42@gmail.com>
parents:
187
diff
changeset
|
50 track.current = 1 |
226d1ac6acb6
hgrc: enable track.current for bookmarks
Augie Fackler <durin42@gmail.com>
parents:
187
diff
changeset
|
51 |
0 | 52 [web] |
53 port=7000 | |
54 allow_archive = bz2 zip | |
55 | |
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
|
56 [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
|
57 status.ignored = magenta bold |
187
68304b1d2878
hgrc: no black on black for qseries
Augie Fackler <durin42@gmail.com>
parents:
186
diff
changeset
|
58 qseries.unapplied = magenta bold |
319
c4f8ba83bce4
hgrc: disable publishing mode locally
Augie Fackler <raf@durin42.com>
parents:
315
diff
changeset
|
59 |
c4f8ba83bce4
hgrc: disable publishing mode locally
Augie Fackler <raf@durin42.com>
parents:
315
diff
changeset
|
60 [phases] |
c4f8ba83bce4
hgrc: disable publishing mode locally
Augie Fackler <raf@durin42.com>
parents:
315
diff
changeset
|
61 publish=false |