forked from drmohundro/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
hgrc.erb
48 lines (39 loc) · 823 Bytes
/
hgrc.erb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<% if RUBY_PLATFORM =~ /(win32|mingw32)/ %>
[ui]
username = dmohundro
merge = beyondcompare3
[color]
mode = ansi
[extensions]
mq =
transplant =
color =
purge =
tpager = ~/dev/oss/tpager/tpager.py
[tortoisehg]
authorcolor = True
vdiff = beyondcompare3
editor = gvim
[pager]
attend = annotate, cat, diff, export, glog, help, log, qdiff, status, tip
hg16mode = yes
pager = C:\Program Files (x86)\git\bin\less.exe -FSRX
[diff]
git = True
[web]
cacerts=
<% else %>
[ui]
username = dmohundro
merge = Kaleidoscope
[extensions]
color =
hgext.extdiff =
hggit = ~/dev/oss/hg-git/hggit
[extdiff]
cmd.ksdiff = /usr/local/bin/ksdiff
opts.ksdiff = --changeset --wait --filelist
[merge-tools]
Kaleidoscope.executable = /usr/local/bin/ksdiff
Kaleidoscope.args = --merge --output $output --base $base -- $local $other
<% end %>