comparison dot_hgrc @ 854:323af99211bc

feat: add .hgrc
author Zeger Van de Vannet <zeger@vandevan.net>
date Sat, 23 Mar 2024 11:26:46 +0100
parents
children 1a144a878e46
comparison
equal deleted inserted replaced
853:b42b8830bb89 854:323af99211bc
1 %include ~/.local.hgrc
2
3 [ui]
4 # We recommend enabling tweakdefaults to get slight improvements to
5 # the UI over time. Make sure to set HGPLAIN in the environment when
6 # writing scripts!
7 tweakdefaults = True
8
9 # uncomment to disable color in command output
10 # (see 'hg help color' for details)
11 # color = never
12
13 # uncomment to disable command output pagination
14 # (see 'hg help pager' for details)
15 # paginate = never
16 merge = internal:merge3
17
18 [merge-tools]
19 meld.disabled = yes
20 vimdiff.disabled = yes
21
22 [extensions]
23 # uncomment the lines below to enable some popular extensions
24 # (see 'hg help extensions' for more info)
25 #
26 histedit =
27 rebase =
28 topic =
29 evolve =
30 # confman =
31 # hggit =
32 absorb =
33 largefiles =
34 mercurial_keyring =
35
36 [experimental]
37 topic-mode = warn
38 evolution = all
39 auto-publish = warn
40
41
42 [phases]
43 publish = false
44
45 [alias]
46 st = status -mard
47 stat = status -mard
48 blame = annotate -cufld
49
50 [rhg]
51 on-unsupported = fallback
52 fallback-executable = /usr/local/bin/hg
53 allowed-extensions = rebase, absorb, evolve, topic
54
55 [committemplate]
56 changeset = {desc}\n\n
57 HG: Enter commit message. Lines beginning with 'HG:' are removed.
58 HG: {extramsg}
59 HG: --
60 HG: user: {author}\n{ifeq(p2rev, "-1", "",
61 "HG: branch merge\n")
62 }HG: branch: '{branch}'\n{if(topic,
63 "HG: topic: '{topic}'\n") }{subrepos %
64 "HG: subrepo: {subrepo}\n" }{file_adds %
65 "HG: added {file}\n" }{file_mods %
66 "HG: changed {file}\n" }{file_dels %
67 "HG: removed {file}\n" }{if(files, "",
68 "HG: no files changed\n")}
69 HG: ------------------------ >8 ------------------------
70 HG: Do not touch the line above.
71 HG: Everything below will be removed.
72 {diff()}