blob: b3f4ce9811b227d68cb865f88a698e0ed932087a [file] [log] [blame]
David Scherer7aced172000-08-15 01:13:23 +00001# IDLE reads several config files to determine user preferences. This
2# file is the default config file. When IDLE starts, it will look in
3# the following four files in order:
4# config.txt the default config file
5# config-[win/unix/mac].txt the generic platform config file
6# config-[sys.platform].txt the specific platform config file
7# ~/.idle the user config file
8# XXX what about Windows?
9#
10# The last definition of each option is used. For example, you can
11# override the default window size (80x24) by defining width and
12# height options in the EditorWindow section of your ~/.idle file
13#
14# IDLE extensions can be enabled and disabled by adding them to one of
15# the config files. To enable an extension, create a section with the
16# same name as the extension, e.g. the [ParenMatch] section below. To
Steven M. Gavafc0386c2001-07-12 05:24:19 +000017# disable an extension, either remove the section or add the 'enable'
18# option with the value 0.
David Scherer7aced172000-08-15 01:13:23 +000019
20[EditorWindow]
21width= 80
22height= 24
23# fonts defined in config-[win/unix].txt
24
25[Colors]
26normal-foreground= black
27normal-background= white
28# These color types are not explicitly defined= sync, todo, stdin
29keyword-foreground= #ff7700
30comment-foreground= #dd0000
31string-foreground= #00aa00
32definition-foreground= #0000ff
33hilite-foreground= #000068
34hilite-background= #006868
35break-foreground= #ff7777
36hit-foreground= #ffffff
37hit-background= #000000
38stdout-foreground= blue
39stderr-foreground= red
40console-foreground= #770000
41error-background= #ff7777
42cursor-background= black
43
44[SearchBinding]
45
46[AutoIndent]
47
48[AutoExpand]
49
50[FormatParagraph]
51
Steven M. Gavaad4f5322002-01-03 12:05:17 +000052#[ZoomHeight]
David Scherer7aced172000-08-15 01:13:23 +000053
Kurt B. Kaiser969de452002-06-12 03:28:57 +000054[ScriptBinding]
David Scherer7aced172000-08-15 01:13:23 +000055
56[CallTips]
57
58[ParenMatch]
59enable= 0
60style= expression
61flash-delay= 500
62bell= 1
63hilite-foreground= black
64hilite-background= #43cd80