summaryrefslogtreecommitdiffstats
path: root/etc/gimprc.in
blob: bdf8f0c0ea5da1dc85d79a11db579cce005c17a5 (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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
# This is the system-wide gimprc file.  Any change made in this file will
# affect all users of this system, provided that they are not overriding the
# default values in their personal gimprc file.
# 
# Lines that start with a '#' are comments. Blank lines are ignored.
# 
# By default everything in this file is commented out.  The file then
# documents the default values and shows what changes are possible.
# 
# The variable ${gimp_dir} is set to the value of the environment variable
# GIMP2_DIRECTORY or, if that is not set, the compiled-in default value is
# used.  If GIMP2_DIRECTORY is not an absolute path, it is interpreted
# relative to your home directory.

# Sets the folder for temporary storage. Files will appear here during the
# course of running GIMP.  Most files will disappear when GIMP exits, but
# some files are likely to remain, so it is best if this folder not be one
# that is shared by other users.  This is a single folder.
# 
# (temp-path "${gimp_temp_dir}")

# Sets the swap file location. GIMP uses a tile based memory allocation
# scheme. The swap file is used to quickly and easily swap tiles out to disk
# and back in. Be aware that the swap file can easily get very large if GIMP
# is used with large images. Also, things can get horribly slow if the swap
# file is created on a folder that is mounted over NFS.  For these reasons,
# it may be desirable to put your swap file in "/tmp".  This is a single
# folder.
# 
# (swap-path "${gimp_cache_dir}")

# The compression method used for tile data stored in the swap file.  This is
# a string value.
# 
# (swap-compression "fast")

# Sets how many threads GIMP should use for operations that support it.  This
# is an integer value.
# 
# (num-processors 1)

# When the amount of pixel data exceeds this limit, GIMP will start to swap
# tiles to disk.  This is a lot slower but it makes it possible to work on
# images that wouldn't fit into memory otherwise.  If you have a lot of RAM,
# you may want to set this to a higher value.  The integer size can contain a
# suffix of 'B', 'K', 'M' or 'G' which makes GIMP interpret the size as being
# specified in bytes, kilobytes, megabytes or gigabytes. If no suffix is
# specified the size defaults to being specified in kilobytes.
# 
# (tile-cache-size 2g)

# When enabled, uses OpenCL for some operations.  Possible values are yes and
# no.
# 
# (use-opencl no)

# Specifies the language to use for the user interface.  This is a string
# value.
# 
# 

# Sets the level of interpolation used for scaling and other transformations.
#  Possible values are none, linear, cubic, nohalo and lohalo.
# 
# (interpolation-type cubic)

# Tools such as fuzzy-select and bucket fill find regions based on a
# seed-fill algorithm.  The seed fill starts at the initially selected pixel
# and progresses in all directions until the difference of pixel intensity
# from the original is greater than a specified threshold. This value
# represents the default threshold.  This is an integer value.
# 
# (default-threshold 15)

# Sets the plug-in search path.  This is a colon-separated list of folders to
# search.
# 
# (plug-in-path "${gimp_dir}/plug-ins:${gimp_plug_in_dir}/plug-ins")

# Sets the module search path.  This is a colon-separated list of folders to
# search.
# 
# (module-path "${gimp_dir}/modules:${gimp_plug_in_dir}/modules")

# Sets the interpreter search path.  This is a colon-separated list of
# folders to search.
# 
# (interpreter-path "${gimp_dir}/interpreters:${gimp_plug_in_dir}/interpreters")

# Sets the environ search path.  This is a colon-separated list of folders to
# search.
# 
# (environ-path "${gimp_dir}/environ:${gimp_plug_in_dir}/environ")

# Sets the brush search path.  This is a colon-separated list of folders to
# search.
# 
# (brush-path "${gimp_dir}/brushes:${gimp_data_dir}/brushes")

# This is a colon-separated list of folders to search.
# 
# (brush-path-writable "${gimp_dir}/brushes")

# Sets the dynamics search path.  This is a colon-separated list of folders
# to search.
# 
# (dynamics-path "${gimp_dir}/dynamics:${gimp_data_dir}/dynamics")

# This is a colon-separated list of folders to search.
# 
# (dynamics-path-writable "${gimp_dir}/dynamics")

# Sets the brush search path.  This is a colon-separated list of folders to
# search.
# 
# (mypaint-brush-path "@mypaint_brushes_dir@:~/.mypaint/brushes")

# This is a colon-separated list of folders to search.
# 
# (mypaint-brush-path-writable "~/.mypaint/brushes")

# Sets the pattern search path.  This is a colon-separated list of folders to
# search.
# 
# (pattern-path "${gimp_dir}/patterns:${gimp_data_dir}/patterns")

# This is a colon-separated list of folders to search.
# 
# (pattern-path-writable "${gimp_dir}/patterns")

# Sets the palette search path.  This is a colon-separated list of folders to
# search.
# 
# (palette-path "${gimp_dir}/palettes:${gimp_data_dir}/palettes")

# This is a colon-separated list of folders to search.
# 
# (palette-path-writable "${gimp_dir}/palettes")

# Sets the gradient search path.  This is a colon-separated list of folders
# to search.
# 
# (gradient-path "${gimp_dir}/gradients:${gimp_data_dir}/gradients")

# This is a colon-separated list of folders to search.
# 
# (gradient-path-writable "${gimp_dir}/gradients")

# Sets the dynamics search path.  This is a colon-separated list of folders
# to search.
# 
# (tool-preset-path "${gimp_dir}/tool-presets:${gimp_data_dir}/tool-presets")

# This is a colon-separated list of folders to search.
# 
# (tool-preset-path-writable "${gimp_dir}/tool-presets")

# Where to look for fonts in addition to the system-wide installed fonts. 
# This is a colon-separated list of folders to search.
# 
# (font-path "${gimp_dir}/fonts:${gimp_data_dir}/fonts")

# Specify a default brush.  The brush is searched for in the specified brush
# path.  This is a string value.
# 
# (default-brush "2. Hardness 050")

# Specify a default dynamics.  The dynamics is searched for in the specified
# dynamics path.  This is a string value.
# 
# (default-dynamics "Dynamics Off")

# Specify a default MyPaint brush.  This is a string value.
# 
# (default-mypaint-brush "Fixme")

# Specify a default pattern.  This is a string value.
# 
# (default-pattern "Pine")

# Specify a default palette.  This is a string value.
# 
# (default-palette "Default")

# Specify a default gradient.  This is a string value.
# 
# (default-gradient "FG to BG (RGB)")

# Specify a default tool preset.  The tool preset is searched for in the
# specified tool prests path.  This is a string value.
# 
# (default-tool-preset "Current Options")

# Specify a default font.  This is a string value.
# 
# (default-font "Sans-serif")

# When enabled, the selected brush will be used for all tools.  Possible
# values are yes and no.
# 
# (global-brush yes)

# When enabled, the selected dynamics will be used for all tools.  Possible
# values are yes and no.
# 
# (global-dynamics yes)

# When enabled, the selected pattern will be used for all tools.  Possible
# values are yes and no.
# 
# (global-pattern yes)

# When enabled, the selected palette will be used for all tools.  Possible
# values are yes and no.
# 
# (global-palette yes)

# When enabled, the selected gradient will be used for all tools.  Possible
# values are yes and no.
# 
# (global-gradient yes)

# When enabled, the selected font will be used for all tools.  Possible
# values are yes and no.
# 
# (global-font yes)

# Sets the default image in the "File/New" dialog.  This is a parameter list.
# 
# (default-image
#     (width 1920)
#     (height 1080)
#     (unit pixels)
#     (xresolution 300)
#     (yresolution 300)
#     (resolution-unit inches)
#     (image-type rgb)
#     (precision u8-gamma)
#     (color-managed yes)
#     (color-profile NULL)
#     (fill-type background)
#     (comment "Created with GIMP"))

# Specify a default image grid.  This is a parameter list.
# 
# (default-grid
#     (style solid)
#     (fgcolor (color-rgba 0 0 0 1))
#     (bgcolor (color-rgba 1 1 1 1))
#     (xspacing 10)
#     (yspacing 10)
#     (spacing-unit inches)
#     (xoffset 0)
#     (yoffset 0)
#     (offset-unit inches))

# Sets the minimal number of operations that can be undone. More undo levels
# are kept available until the undo-size limit is reached.  This is an
# integer value.
# 
# (undo-levels 5)

# Sets an upper limit to the memory that is used per image to keep operations
# on the undo stack. Regardless of this setting, at least as many undo-levels
# as configured can be undone.  The integer size can contain a suffix of 'B',
# 'K', 'M' or 'G' which makes GIMP interpret the size as being specified in
# bytes, kilobytes, megabytes or gigabytes. If no suffix is specified the
# size defaults to being specified in kilobytes.
# 
# (undo-size 1g)

# Sets the size of the previews in the Undo History.  Possible values are
# tiny, extra-small, small, medium, large, extra-large, huge, enormous and
# gigantic.
# 
# (undo-preview-size large)

# How many recently used filters and plug-ins to keep on the Filters menu. 
# This is an integer value.
# 
# (plug-in-history-size 10)

# Sets the pluginrc search path.  This is a single filename.
# 
# (pluginrc-path "${gimp_dir}/pluginrc")

# Sets whether GIMP should create previews of layers and channels. Previews
# in the layers and channels dialog are nice to have but they can slow things
# down when working with large images.  Possible values are yes and no.
# 
# (layer-previews yes)

# Sets whether GIMP should create previews of layer groups. Layer group
# previews are more expensive than ordinary layer previews.  Possible values
# are yes and no.
# 
# (group-layer-previews yes)

# Sets the preview size used for layers and channel previews in newly created
# dialogs.  Possible values are tiny, extra-small, small, medium, large,
# extra-large, huge, enormous and gigantic.
# 
# (layer-preview-size medium)

# Sets the size of the thumbnail shown in the Open dialog.  Possible values
# are none, normal and large.
# 
# (thumbnail-size normal)

# The thumbnail in the Open dialog will be automatically updated if the file
# being previewed is smaller than the size set here.  The integer size can
# contain a suffix of 'B', 'K', 'M' or 'G' which makes GIMP interpret the
# size as being specified in bytes, kilobytes, megabytes or gigabytes. If no
# suffix is specified the size defaults to being specified in kilobytes.
# 
# (thumbnail-filesize-limit 4M)

# Defines the color management behavior.  This is a parameter list.
# 
# (color-management
#     (mode display)
#     (display-profile-from-gdk no)
#     (display-rendering-intent relative-colorimetric)
#     (display-use-black-point-compensation yes)
#     (display-optimize yes)
#     (simulation-rendering-intent perceptual)
#     (simulation-use-black-point-compensation no)
#     (simulation-optimize yes)
#     (simulation-gamut-check no)
#     (out-of-gamut-color (color-rgb 1 0 1))
#     (show-rgb-u8 no)
#     (show-hsv no)
#     (display-module "CdisplayLcms"))

# Keep a permanent record of all opened and saved files in the Recent
# Documents list.  Possible values are yes and no.
# 
# (save-document-history yes)

# Sets the default quick mask color.  The color is specified in the form
# (color-rgba red green blue alpha) with channel values as floats in the
# range of 0.0 to 1.0.
# 
# (quick-mask-color (color-rgba 1 0 0 0.5))

# Promote imported images to floating point precision. Does not apply to
# indexed images.  Possible values are yes and no.
# 
# (import-promote-float no)

# When promoting imported images to floating point precision, also add
# minimal noise in order to distribute color values a bit.  Possible values
# are yes and no.
# 
# (import-promote-dither yes)

# Add an alpha channel to all layers of imported images.  Possible values are
# yes and no.
# 
# (import-add-alpha no)

# Which plug-in to use for importing raw digital camera files.  This is a
# single filename.
# 
# (import-raw-plug-in "")

# Export file type used by default.  Possible values are png, jpg, ora, psd,
# pdf, tif, bmp and webp.
# 
# (export-file-type png)

# Export the image's color profile by default.  Possible values are yes and
# no.
# 
# (export-color-profile yes)

# Export Exif metadata by default.  Possible values are yes and no.
# 
# (export-metadata-exif yes)

# Export XMP metadata by default.  Possible values are yes and no.
# 
# (export-metadata-xmp yes)

# Export IPTC metadata by default.  Possible values are yes and no.
# 
# (export-metadata-iptc yes)

# Try generating debug data for bug reporting when appropriate.  Possible
# values are warning, critical, fatal and never.
# 
# (debug-policy fatal)

# Check for availability of GIMP updates through background internet queries.
#  Possible values are yes and no.
# 
# (check-updates yes)

# Timestamp of the last update check.  (null)
# 
# (check-update-timestamp 0)

# The timestamp for the last known release date.  (null)
# 
# (last-release-timestamp 0)

# The last known release version of GIMP as queried from official website. 
# This is a string value.
# 
# 

# The timestamp for the last known release date.  This is an integer value.
# 
# (last-revision 0)

# The last known release version of GIMP as queried from official website. 
# This is a string value.
# 
# 

# Sets the size of the checkerboard used to display transparency.  Possible
# values are small-checks, medium-checks and large-checks.
# 
# (transparency-size medium-checks)

# Sets the manner in which transparency is displayed in images.  Possible
# values are light-checks, gray-checks, dark-checks, white-only, gray-only
# and black-only.
# 
# (transparency-type gray-checks)

# This is the distance in pixels where Guide and Grid snapping activates. 
# This is an integer value.
# 
# (snap-distance 8)

# Speed of marching ants in the selection outline.  This value is in
# milliseconds (less time indicates faster marching).  This is an integer
# value.
# 
# (marching-ants-speed 200)

# When enabled, the image window will automatically resize itself when
# zooming into and out of images. This setting only takes effect in
# multi-window mode.  Possible values are yes and no.
# 
# (resize-windows-on-zoom no)

# When enabled, the image window will automatically resize itself whenever
# the physical image size changes. This setting only takes effect in
# multi-window mode.  Possible values are yes and no.
# 
# (resize-windows-on-resize no)

# Show full image content by default.  Possible values are yes and no.
# 
# (default-show-all no)

# When enabled, this will ensure that each pixel of an image gets mapped to a
# pixel on the screen.  Possible values are yes and no.
# 
# (default-dot-for-dot yes)

# When enabled, this will ensure that the full image is visible after a file
# is opened, otherwise it will be displayed with a scale of 1:1.  Possible
# values are yes and no.
# 
# (initial-zoom-to-fit yes)

# Sets the type of mouse pointers to use.  Possible values are tool-icon,
# tool-crosshair and crosshair.
# 
# (cursor-mode tool-crosshair)

# Context-dependent mouse pointers are helpful.  They are enabled by default.
#  However, they require overhead that you may want to do without.  Possible
# values are yes and no.
# 
# (cursor-updating yes)

# When enabled, all paint tools will show a preview of the current brush's
# outline.  Possible values are yes and no.
# 
# (show-brush-outline yes)

# When enabled, the brush outline will snap to individual dabs while
# painting.  Possible values are yes and no.
# 
# (snap-brush-outline no)

# When enabled, the mouse pointer will be shown over the image while using a
# paint tool.  Possible values are yes and no.
# 
# (show-paint-tool-cursor yes)

# Sets the text to appear in image window titles.  This is a format string;
# certain % character sequences are recognised and expanded as follows:
# 
# %%  literal percent sign
# %f  bare filename, or "Untitled"
# %F  full path to file, or "Untitled"
# %p  PDB image id
# %i  view instance number
# %t  image type (RGB, grayscale, indexed)
# %z  zoom factor as a percentage
# %s  source scale factor
# %d  destination scale factor
# %Dx expands to x if the image is dirty, the empty string otherwise
# %Cx expands to x if the image is clean, the empty string otherwise
# %B  expands to (modified) if the image is dirty, the empty string otherwise
# %A  expands to (clean) if the image is clean, the empty string otherwise
# %Nx expands to x if the image is export-dirty, the empty string otherwise
# %Ex expands to x if the image is export-clean, the empty string otherwise
# %l  the number of layers
# %L  the number of layers (long form)
# %m  memory used by the image
# %n  the name of the active layer/channel
# %P  the PDB id of the active layer/channel
# %w  image width in pixels
# %W  image width in real-world units
# %h  image height in pixels
# %H  image height in real-world units
# %M  the image size expressed in megapixels
# %u  unit symbol
# %U  unit abbreviation
# %x  the width of the active layer/channel in pixels
# %X  the width of the active layer/channel in real-world units
# %y  the height of the active layer/channel in pixels
# %Y  the height of the active layer/channel in real-world units
# %o  the name of the image's color profile
# 
# 
# (image-title-format "%D*%f-%p.%i (%t, %o, %L) %wx%h")

# Sets the text to appear in image window status bars.  This is a format
# string; certain % character sequences are recognised and expanded as
# follows:
# 
# %%  literal percent sign
# %f  bare filename, or "Untitled"
# %F  full path to file, or "Untitled"
# %p  PDB image id
# %i  view instance number
# %t  image type (RGB, grayscale, indexed)
# %z  zoom factor as a percentage
# %s  source scale factor
# %d  destination scale factor
# %Dx expands to x if the image is dirty, the empty string otherwise
# %Cx expands to x if the image is clean, the empty string otherwise
# %B  expands to (modified) if the image is dirty, the empty string otherwise
# %A  expands to (clean) if the image is clean, the empty string otherwise
# %Nx expands to x if the image is export-dirty, the empty string otherwise
# %Ex expands to x if the image is export-clean, the empty string otherwise
# %l  the number of layers
# %L  the number of layers (long form)
# %m  memory used by the image
# %n  the name of the active layer/channel
# %P  the PDB id of the active layer/channel
# %w  image width in pixels
# %W  image width in real-world units
# %h  image height in pixels
# %H  image height in real-world units
# %M  the image size expressed in megapixels
# %u  unit symbol
# %U  unit abbreviation
# %x  the width of the active layer/channel in pixels
# %X  the width of the active layer/channel in real-world units
# %y  the height of the active layer/channel in pixels
# %Y  the height of the active layer/channel in real-world units
# %o  the name of the image's color profile
# 
# 
# (image-status-format "%n (%m)")

# Sets the monitor's horizontal resolution, in dots per inch.  If set to 0,
# forces the X server to be queried for both horizontal and vertical
# resolution information.  This is a float value.
# 
# (monitor-xresolution 96)

# Sets the monitor's vertical resolution, in dots per inch.  If set to 0,
# forces the X server to be queried for both horizontal and vertical
# resolution information.  This is a float value.
# 
# (monitor-yresolution 96)

# When enabled, GIMP will use the monitor resolution from the windowing
# system.  Possible values are yes and no.
# 
# (monitor-resolution-from-windowing-system yes)

# Sets the size of the navigation preview available in the lower right corner
# of the image window.  Possible values are tiny, extra-small, small, medium,
# large, extra-large, huge, enormous and gigantic.
# 
# (navigation-preview-size medium)

# Sets the default settings for the image view.  This is a parameter list.
# 
# (default-view
#     (show-menubar yes)
#     (show-statusbar yes)
#     (show-rulers yes)
#     (show-scrollbars yes)
#     (show-selection yes)
#     (show-layer-boundary yes)
#     (show-canvas-boundary yes)
#     (show-guides yes)
#     (show-grid no)
#     (show-sample-points yes)
#     (snap-to-guides yes)
#     (snap-to-grid no)
#     (snap-to-canvas no)
#     (snap-to-path no)
#     (padding-mode default)
#     (padding-color (color-rgb 1 1 1))
#     (padding-in-show-all no))

# Sets the default settings used when an image is viewed in fullscreen mode. 
# This is a parameter list.
# 
# (default-fullscreen-view
#     (show-menubar yes)
#     (show-statusbar yes)
#     (show-rulers yes)
#     (show-scrollbars yes)
#     (show-selection yes)
#     (show-layer-boundary yes)
#     (show-canvas-boundary yes)
#     (show-guides yes)
#     (show-grid no)
#     (show-sample-points yes)
#     (snap-to-guides yes)
#     (snap-to-grid no)
#     (snap-to-canvas no)
#     (snap-to-path no)
#     (padding-mode default)
#     (padding-color (color-rgb 1 1 1))
#     (padding-in-show-all no))

# When enabled, an image will become the active image when its image window
# receives the focus. This is useful for window managers using "click to
# focus".  Possible values are yes and no.
# 
# (activate-on-focus yes)

# What to do when the space bar is pressed in the image window.  Possible
# values are none, pan and move.
# 
# (space-bar-action pan)

# There's a tradeoff between speed and quality of the zoomed-out display. 
# Possible values are low and high.
# 
# (zoom-quality high)

# Bugs in event history buffer are frequent so in case of cursor offset
# problems turning it off helps.  Possible values are yes and no.
# 
# (use-event-history no)

# When enabled, non-visible layers can be edited as normal.  Possible values
# are yes and no.
# 
# (edit-non-visible no)

# If enabled, the move tool sets the edited layer or path as active.  This
# used to be the default behaviour in older versions.  Possible values are
# yes and no.
# 
# (move-tool-changes-active no)

# How many recent settings to keep around in filter tools.  This is an
# integer value.
# 
# (filter-tool-max-recent 10)

# Default to the last used settings in filter tools.  Possible values are yes
# and no.
# 
# (filter-tool-use-last-settings no)

# Show advanced color options in filter tools.  Possible values are yes and
# no.
# 
# (filter-tool-show-color-options no)

# When enabled, GIMP will not save an image if it has not been changed since
# it was opened.  Possible values are yes and no.
# 
# (trust-dirty-flag no)

# Remember the current tool, pattern, color, and brush across GIMP sessions. 
# Possible values are yes and no.
# 
# (save-device-status yes)

# When enabled, the same tool and tool options will be used for all input
# devices. No tool switching will occur when the input device changes. 
# Possible values are yes and no.
# 
# (devices-share-tool no)

# Save the positions and sizes of the main dialogs when GIMP exits.  Possible
# values are yes and no.
# 
# (save-session-info yes)

# Let GIMP try to restore your last saved session on each startup.  Possible
# values are yes and no.
# 
# (restore-session yes)

# When enabled, GIMP will try to restore windows on the monitor they were
# open before.  When disabled, windows will appear on the currently used
# monitor.  Possible values are yes and no.
# 
# (restore-monitor no)

# Save the tool options when GIMP exits.  Possible values are yes and no.
# 
# (save-tool-options yes)

# Use compact style for sliders.  Possible values are yes and no.
# 
# (compact-sliders yes)

# Show a tooltip when the pointer hovers over an item.  Possible values are
# yes and no.
# 
# (show-tooltips yes)

# When enabled, menus can be torn off.  Possible values are yes and no.
# 
# (tearoff-menus yes)

# When enabled, you can change keyboard shortcuts for menu items by hitting a
# key combination while the menu item is highlighted.  Possible values are
# yes and no.
# 
# (can-change-accels no)

# Save changed keyboard shortcuts when GIMP exits.  Possible values are yes
# and no.
# 
# (save-accels yes)

# Restore saved keyboard shortcuts on each GIMP startup.  Possible values are
# yes and no.
# 
# (restore-accels yes)

# How many recently opened image filenames to keep on the File menu.  This is
# an integer value.
# 
# (last-opened-size 10)

# GIMP will warn the user if an attempt is made to create an image that would
# take more memory than the size specified here.  The integer size can
# contain a suffix of 'B', 'K', 'M' or 'G' which makes GIMP interpret the
# size as being specified in bytes, kilobytes, megabytes or gigabytes. If no
# suffix is specified the size defaults to being specified in kilobytes.
# 
# (max-new-image-size 128M)

# Show the current foreground and background colors in the toolbox.  Possible
# values are yes and no.
# 
# (toolbox-color-area yes)

# Show the currently selected brush, pattern and gradient in the toolbox. 
# Possible values are yes and no.
# 
# (toolbox-foo-area no)

# Show the currently active image in the toolbox.  Possible values are yes
# and no.
# 
# (toolbox-image-area no)

# Show the GIMP mascot at the top of the toolbox.  Possible values are yes
# and no.
# 
# (toolbox-wilber yes)

# Use a single toolbox button for grouped tools.  Possible values are yes and
# no.
# 
# (toolbox-groups yes)

# Menu mode of grouped tools.  Possible values are click, hover and
# hover-single-column.
# 
# (toolbox-group-menu-mode hover-single-column)

# Sets the theme search path.  This is a colon-separated list of folders to
# search.
# 
# (theme-path "${gimp_dir}/themes:${gimp_data_dir}/themes")

# The name of the theme to use.  This is a string value.
# 
# (theme "Dark")

# Sets the icon theme search path.  This is a colon-separated list of folders
# to search.
# 
# (icon-theme-path "${gimp_dir}/icons:${gimp_data_dir}/icons")

# The name of the icon theme to use.  This is a string value.
# 
# (icon-theme "Symbolic")

# The size of the icons to use.  Possible values are auto, theme, small,
# medium, large and huge.
# 
# (icon-size auto)

# When enabled, pressing F1 will open the help browser.  Possible values are
# yes and no.
# 
# (use-help yes)

# When enabled, dialogs will show a help button that gives access to the
# related help page.  Without this button, the help page can still be reached
# by pressing F1.  Possible values are yes and no.
# 
# (show-help-button yes)

# Specifies the language preferences used by the help system. This is a
# colon-separated list of language identifiers with decreasing priority. If
# empty, the language is taken from the user's locale setting.  This is a
# string value.
# 
# (help-locales "")

# Sets the browser used by the help system.  Possible values are gimp and
# web-browser.
# 
# (help-browser web-browser)

# When enabled, a search of actions will also return inactive actions. 
# Possible values are yes and no.
# 
# (search-show-unavailable-actions no)

# The maximum number of actions saved in history.  This is an integer value.
# 
# (action-history-size 100)

# When enabled, the online user manual will be used by the help system.
# Otherwise the locally installed copy is used.  Possible values are yes and
# no.
# 
# (user-manual-online no)

# The location of the online user manual. This is used if
# 'user-manual-online' is enabled.  This is a string value.
# 
# (user-manual-online-uri "https://docs.gimp.org/2.10")

# The window type hint that is set on dock windows and the toolbox window.
# This may affect the way your window manager decorates and handles these
# windows.  Possible values are normal, utility and keep-above.
# 
# (dock-window-hint utility)

# Sets the handedness for cursor positioning.  Possible values are left and
# right.
# 
# (cursor-handedness right)

# Enable the N-Point Deformation tool.  Possible values are yes and no.
# 
# (playground-npd-tool no)

# Enable the Seamless Clone tool.  Possible values are yes and no.
# 
# (playground-seamless-clone-tool no)

# How to handle embedded color profiles when opening a file.  Possible values
# are ask, keep and convert.
# 
# (color-profile-policy ask)

# Sets the default folder path for all color profile file dialogs.  This is a
# single filename.
# 
# 

# Sets the default rendering intent for the 'Convert to Color Profile'
# dialog.  Possible values are perceptual, relative-colorimetric, saturation
# and absolute-colorimetric.
# 
# (image-convert-profile-intent relative-colorimetric)

# Sets the default 'Black Point Compensation' state for the 'Convert to Color
# Profile' dialog.  Possible values are yes and no.
# 
# (image-convert-profile-black-point-compensation yes)

# Sets the default layer dithering method for the 'Convert Precision' dialog.
#  Possible values are none, floyd-steinberg, bayer, random,
# random-covariant, add, add-covariant, xor, xor-covariant, blue-noise and
# blue-noise-covariant.
# 
# (image-convert-precision-layer-dither-method none)

# Sets the default text layer dithering method for the 'Convert Precision'
# dialog.  Possible values are none, floyd-steinberg, bayer, random,
# random-covariant, add, add-covariant, xor, xor-covariant, blue-noise and
# blue-noise-covariant.
# 
# (image-convert-precision-text-layer-dither-method none)

# Sets the default channel dithering method for the 'Convert Precision'
# dialog.  Possible values are none, floyd-steinberg, bayer, random,
# random-covariant, add, add-covariant, xor, xor-covariant, blue-noise and
# blue-noise-covariant.
# 
# (image-convert-precision-channel-dither-method none)

# Sets the default palette type for the 'Convert to Indexed' dialog. 
# Possible values are generate, web, mono and custom.
# 
# (image-convert-indexed-palette-type generate)

# Sets the default maximum number of colors for the 'Convert to Indexed'
# dialog.  This is an integer value.
# 
# (image-convert-indexed-max-colors 256)

# Sets the default 'Remove duplicate colors' state for the 'Convert to
# Indexed' dialog.  Possible values are yes and no.
# 
# (image-convert-indexed-remove-duplicates yes)

# Sets the default dithering type for the 'Convert to Indexed' dialog. 
# Possible values are none, fs, fs-lowbleed and fixed.
# 
# (image-convert-indexed-dither-type none)

# Sets the default 'Dither alpha' state for the 'Convert to Indexed' dialog. 
# Possible values are yes and no.
# 
# (image-convert-indexed-dither-alpha no)

# Sets the default 'Dither text layers' state for the 'Convert to Indexed'
# dialog.  Possible values are yes and no.
# 
# (image-convert-indexed-dither-text-layers no)

# Sets the default fill type for the 'Canvas Size' dialog.  Possible values
# are foreground, background, white, transparent and pattern.
# 
# (image-resize-fill-type transparent)

# Sets the default set of layers to resize for the 'Canvas Size' dialog. 
# Possible values are none, all, image-sized, visible and linked.
# 
# (image-resize-layer-set none)

# Sets the default 'Resize text layers' state for the 'Canvas Size' dialog. 
# Possible values are yes and no.
# 
# (image-resize-resize-text-layers no)

# Sets the default layer name for the 'New Layer' dialog.  This is a string
# value.
# 
# (layer-new-name "Layer")

# Sets the default mode for the 'New Layer' dialog.  Possible values are
# normal-legacy, dissolve, behind-legacy, multiply-legacy, screen-legacy,
# overlay-legacy, difference-legacy, addition-legacy, subtract-legacy,
# darken-only-legacy, lighten-only-legacy, hsv-hue-legacy,
# hsv-saturation-legacy, hsl-color-legacy, hsv-value-legacy, divide-legacy,
# dodge-legacy, burn-legacy, hardlight-legacy, softlight-legacy,
# grain-extract-legacy, grain-merge-legacy, color-erase-legacy, overlay,
# lch-hue, lch-chroma, lch-color, lch-lightness, normal, behind, multiply,
# screen, difference, addition, subtract, darken-only, lighten-only, hsv-hue,
# hsv-saturation, hsl-color, hsv-value, divide, dodge, burn, hardlight,
# softlight, grain-extract, grain-merge, vivid-light, pin-light,
# linear-light, hard-mix, exclusion, linear-burn, luma-darken-only,
# luma-lighten-only, luminance, color-erase, erase, merge, split,
# pass-through, replace and anti-erase.
# 
# (layer-new-mode normal)

# Sets the default blend space for the 'New Layer' dialog.  Possible values
# are auto, rgb-linear, rgb-perceptual and lab.
# 
# (layer-new-blend-space auto)

# Sets the default composite space for the 'New Layer' dialog.  Possible
# values are auto, rgb-linear, rgb-perceptual and lab.
# 
# (layer-new-composite-space auto)

# Sets the default composite mode for the 'New Layer' dialog.  Possible
# values are auto, union, clip-to-backdrop, clip-to-layer and intersection.
# 
# (layer-new-composite-mode auto)

# Sets the default opacity for the 'New Layer' dialog.  This is a float
# value.
# 
# (layer-new-opacity 1)

# Sets the default fill type for the 'New Layer' dialog.  Possible values are
# foreground, background, white, transparent and pattern.
# 
# (layer-new-fill-type transparent)

# Sets the default fill type for the 'Layer Boundary Size' dialog.  Possible
# values are foreground, background, white, transparent and pattern.
# 
# (layer-resize-fill-type transparent)

# Sets the default mask for the 'Add Layer Mask' dialog.  Possible values are
# white, black, alpha, alpha-transfer, selection, copy and channel.
# 
# (layer-add-mask-type white)

# Sets the default 'invert mask' state for the 'Add Layer Mask' dialog. 
# Possible values are yes and no.
# 
# (layer-add-mask-invert no)

# Sets the default merge type for the 'Merge Visible Layers' dialog. 
# Possible values are expand-as-necessary, clip-to-image,
# clip-to-bottom-layer and flatten-image.
# 
# (layer-merge-type expand-as-necessary)

# Sets the default 'Active group only' for the 'Merge Visible Layers' dialog.
#  Possible values are yes and no.
# 
# (layer-merge-active-group-only yes)

# Sets the default 'Discard invisible' for the 'Merge Visible Layers' dialog.
#  Possible values are yes and no.
# 
# (layer-merge-discard-invisible no)

# Sets the default channel name for the 'New Channel' dialog.  This is a
# string value.
# 
# (channel-new-name "Channel")

# Sets the default color and opacity for the 'New Channel' dialog.  The color
# is specified in the form (color-rgba red green blue alpha) with channel
# values as floats in the range of 0.0 to 1.0.
# 
# (channel-new-color (color-rgba 0 0 0 0.5))

# Sets the default path name for the 'New Path' dialog.  This is a string
# value.
# 
# (path-new-name "Path")

# Sets the default folder path for the 'Export Path' dialog.  This is a
# single filename.
# 
# 

# Sets the default 'Export the active path' state for the 'Export Path'
# dialog.  Possible values are yes and no.
# 
# (path-export-active-only yes)

# Sets the default folder path for the 'Import Path' dialog.  This is a
# single filename.
# 
# 

# Sets the default 'Merge imported paths' state for the 'Import Path' dialog.
#  Possible values are yes and no.
# 
# (path-import-merge no)

# Sets the default 'Scale imported paths to fit size' state for the 'Import
# Path' dialog.  Possible values are yes and no.
# 
# (path-import-scale no)

# Sets the default feather radius for the 'Feather Selection' dialog.  This
# is a float value.
# 
# (selection-feather-radius 5)

# Sets the default 'Selected areas continue outside the image' setting for
# the 'Feather Selection' dialog.  Possible values are yes and no.
# 
# (selection-feather-edge-lock yes)

# Sets the default grow radius for the 'Grow Selection' dialog.  This is a
# float value.
# 
# (selection-grow-radius 1)

# Sets the default shrink radius for the 'Shrink Selection' dialog.  This is
# a float value.
# 
# (selection-shrink-radius 1)

# Sets the default 'Selected areas continue outside the image' setting for
# the 'Shrink Selection' dialog.  Possible values are yes and no.
# 
# (selection-shrink-edge-lock no)

# Sets the default border radius for the 'Border Selection' dialog.  This is
# a float value.
# 
# (selection-border-radius 5)

# Sets the default border style for the 'Border Selection' dialog.  Possible
# values are hard, smooth and feathered.
# 
# (selection-border-style smooth)

# Sets the default 'Selected areas continue outside the image' setting for
# the 'Border Selection' dialog.  Possible values are yes and no.
# 
# (selection-border-edge-lock no)

# The default fill options for the fill dialogs.  This is a parameter list.
# 
# (fill-options
#     (style solid)
#     (antialias yes)
#     (feather no)
#     (feather-radius 10))

# The default stroke options for the stroke dialogs.  This is a parameter
# list.
# 
# (stroke-options
#     (style solid)
#     (antialias yes)
#     (feather no)
#     (feather-radius 10)
#     (method line)
#     (width 6)
#     (unit pixels)
#     (cap-style butt)
#     (join-style miter)
#     (miter-limit 10)
#     (dash-offset 0)
#     (dash-info 0)
#     (emulate-brush-dynamics no))

# Where to search for fractals used by the Fractal Explorer plug-in.  This is
# a colon-separated list of folders to search.
# 
# (fractalexplorer-path "${gimp_dir}/fractalexplorer:${gimp_data_dir}/fractalexplorer")

# Where to search for Gfig figures used by the Gfig plug-in.  This is a
# colon-separated list of folders to search.
# 
# (gfig-path "${gimp_dir}/gfig:${gimp_data_dir}/gfig")

# Where to search for gflares used by the GFlare plug-in.  This is a
# colon-separated list of folders to search.
# 
# (gflare-path "${gimp_dir}/gflare:${gimp_data_dir}/gflare")

# Where to search for data used by the Gimpressionist plug-in.  This is a
# colon-separated list of folders to search.
# 
# (gimpressionist-path "${gimp_dir}/gimpressionist:${gimp_data_dir}/gimpressionist")

# This path will be searched for scripts when the Script-Fu plug-in is run. 
# This is a colon-separated list of folders to search.
# 
# (script-fu-path "${gimp_dir}/scripts:${gimp_data_dir}/scripts")