blob: 5f0c1abc17b1ad94fb1b9ae3fa4fea82687368c4 (
plain)
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
|
# Default Options for xasy
# External editor. $asypath will be replaced by the current file.
externalEditor: "vi"
externalEditorArgs: ["$asypath"]
# Path to Asymptote executable
asyPath: "asy"
# Overwrites the ASYMPTOTE_DIR Environment variable if set. Otherwise, leaves asymptote to decide.
asyBaseLocation: null
# Show Debugging Information
showDebug: false
# Default Pen Options
defaultPenOptions: ""
# Default Pen Color
defaultPenColor: "#000000"
#
defaultPenWidth: 0.5
useLegacyDrawMode: false
enableImmediatePreview: true
useDegrees: false
groupObjDefault: false
#
terminalFont: "Courier"
terminalFontSize: 9
#
defaultShowAxes: true
defaultShowGrid: false
defaultGridSnap: false
# Draw Selected Objects on top of the frame
drawSelectedOnTop: true
# Grid Settings
gridMajorAxesColor: "#858585"
gridMinorAxesColor: "#dddddd"
gridMajorAxesSpacing: 5
gridMinorAxesCount: 9
# Number of pixels per bp in 3D rendered bitmaps
renderDensity: 2
# Magnification Settings
minimumMagnification: 0.01
maximumMagnification: 100
# Debug Mode
debugMode: true
# Overrides
Windows:
externalEditor: "notepad.exe"
Darwin:
externalEditor: "open"
externalEditorArgs: ["-a","TextEdit","$asypath"]
|