Skip to content

Commit ba8385e

Browse files
Federico Ceratto federico cerattoFederico Ceratto federico ceratto
authored andcommitted
Added new configuration file sample.
user: Federico Ceratto federico.ceratto@gmail.com added sample.ini
1 parent 595f6be commit ba8385e

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

sample.ini

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
2+
# This is a standard python .ini file
3+
# Valid values can be True, False, integer numbers, quoted strings
4+
5+
# General section tag
6+
[general]
7+
8+
# Display the autocomplete list as you type (default: True).
9+
# When this is off, you can hit tab to see the suggestions.
10+
auto_display_list = True
11+
12+
# Syntax highlighting as you type (default: True).
13+
syntax = True
14+
15+
# Display the arg spec (list of arguments) for callables,
16+
# when possible (default: True).
17+
arg_spec = True
18+
19+
# History file:
20+
hist_file = "~/.pythonhist"
21+
22+
# Number of lines to store in history (set to 0 to disable):
23+
hist_len = 100
24+
25+
# Soft tab size:
26+
tab_length = 4
27+

0 commit comments

Comments
 (0)