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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
# Example calcli configuration.
#
# Copy to your config directory to customize defaults:
# $XDG_CONFIG_HOME/calcli/config.toml (or ~/.config/calcli/config.toml)
#
# Every key is optional; omitted keys keep the built-in default shown below.
# Default notation: "decimal", "scientific" or "siprefixed".
= "decimal"
# Fractional digits in decimal and scientific notation.
= 3
# Default angle mode for trig functions: "rad" or "deg".
= "rad"
# Decimal mark used for display and accepted on input: "." or ",".
# (The other of . / , is always accepted as a thousands separator on input.)
= "."
# Thousands group separator used for display (a space by default; "" disables).
= " "
# Drop trailing fractional zeros on display (12 instead of 12.000, 1.5 k instead
# of 1.500 k). `decimals` still caps the precision. Toggle at runtime with F6.
= true
# Maximum number of history lines kept.
= 500
# Glyph set: "unicode" or "ascii".
= "unicode"
# On startup, restore the last session's settings (true) or always start from
# the defaults above (false). Variables and history are restored either way.
= true
# Show a live result preview / validity warning on the input border as you type.
= true
# Tint every second history entry (zebra striping); uses theme.history_alt_bg.
= false
# Blank lines inserted after each history entry's result.
= 1
# Draw a separator line in the gap between history entries (needs spacing >= 1).
= true
# Max height (in text lines) the input field grows to as a long expression wraps.
= 5
[]
# Accent colour as #rrggbb or a name (cyan, green, magenta, yellow, blue).
= "#6dd0ff"
# Syntax-highlight colours for the expression (input, history and editing).
# Operators are always rendered bold, parentheses dim and `ans` underlined;
# the rest use these (each defaults to the muted value shown).
= "#78c2b3"
= "#7c94ff"
= "#fe7057"
= "#e5cb49"
= "#b27cde"
= "#7dcfff"
= "#67c1e5"
= "#ff79c6"
# Background of the full-width settings bar (below the input).
= "#252525"
# Background tint of every second history entry (only when history_zebra = true).
= "#1a1a1a"
# Colour of the separator line between history entries (when history_separator).
= "#3e3e3e"