Skip to content

Instantly share code, notes, and snippets.

@thomasballinger
Created November 20, 2013 01:04
Show Gist options
  • Select an option

  • Save thomasballinger/7555718 to your computer and use it in GitHub Desktop.

Select an option

Save thomasballinger/7555718 to your computer and use it in GitHub Desktop.
# This is a standard python config file
# Valid values can be True, False, integer numbers, strings
# By default bpython will look for ~/.config/bpython/config or you
# can specify a file with the --config option on the command line
# General section tag
[general]
# Display the autocomplete list as you type (default: True).
# When this is off, you can hit tab to see the suggestions.
auto_display_list = True
# Syntax highlighting as you type (default: True).
syntax = True
# Display the arg spec (list of arguments) for callables,
# when possible (default: True).
arg_spec = True
# History file (default: ~/.pythonhist):
hist_file = ~/.pythonhist
# Number of lines to store in history (set to 0 to disable) (default: 100):
hist_length = 100
# Soft tab size (default: 4, see pep-8):
tab_length = 4
# Color schemes should be put in ~/.bpython/
# e.g. to use the theme ~/.bpython/foo.theme set color_scheme = foo
# Leave blank or set to "default" to use the default theme
color_scheme = tom
pastebin_helper = gist.py
#pastebin_helper = opt.py
[keyboard]
pastebin = F8
save = C-s
rewind = C-n
last_output_key = C-k
[cli]
suggestion_width = .7
[scroll]
list_above = True
fill_terminal = False
auto_import = True
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment