mirror of
https://github.com/kennethreitz-archive/bpython-gist.git
synced 2026-06-05 15:40:17 +00:00
29 lines
735 B
Plaintext
29 lines
735 B
Plaintext
# positives: yes, true, on
|
|
# negatives: no, false, off
|
|
# This is parsed using shlex, so any future versions that use
|
|
# string options and stuff should be escaped properly.
|
|
|
|
# Display the autocomplete list as you type (default: on).
|
|
# When this is off, you can hit tab to see the suggestions.
|
|
auto_display_list = yes
|
|
|
|
# Syntax highlighting as you type (default: on).
|
|
syntax = on
|
|
|
|
# Display the arg spec (list of arguments) for callables,
|
|
# when possible (default: on).
|
|
arg_spec = true
|
|
|
|
# History file:
|
|
hist_file = ~/.pythonhist
|
|
|
|
# Number of lines to store in history (set to 0 to disable):
|
|
hist_len = 100
|
|
|
|
# Soft tab size:
|
|
tab_length = 4
|
|
|
|
# Gist configuration
|
|
use_gist = true
|
|
github_login = kennethreitz
|
|
github_token = xxxxxxxxxxxxxxxxx |