d473cbd6dafc5354feee50c3d2a4e55c06a545d8
[shutils.git] / dotfiles / hg / hgrc
1 [ui]
2 username = First Last <me@example.com>
3 merge = gvimdiff
4 editor = vim
5
6 [merge-tools]
7 gvimdiff.executable = gvim
8 gvimdiff.args = -f -d $base $local $output $other -c "wincmd J"
9
10 [web]
11 cacerts =
12
13 [auth]
14
15 [hostfingerprints]
16
17 [extensions]
18 color =
19 pager =
20 transplant =
21 rebase =
22 hgext.mq =
23 hgext.patchbomb =
24 graphlog =
25 hgext.extdiff =
26 fetch =
27 hgext.hgshelve = ~/.hgext/hgshelve.py
28
29 [pager]
30 pager = LESS='FSRX' less
31 #quiet = True
32 #attend = diff,status,log,glog
33
34 [diff]
35 git = True
36
37 [extdiff]
38 # if cwdiff is in your path, otherwise set to wherever you've installed cwdiff
39 cmd.wdiff = cwdiff
40 #add --no-color below, if you dislike colors!
41 opts.wdiff = --diff --ab
42
43