9 lines
279 B
Python
9 lines
279 B
Python
|
|
# Configuration file for ipython.
|
||
|
|
|
||
|
|
c = get_config()
|
||
|
|
c.TerminalIPythonApp.force_interact = True
|
||
|
|
c.TerminalIPythonApp.display_banner = False
|
||
|
|
c.TerminalInteractiveShell.confirm_exit = False
|
||
|
|
c.TerminalInteractiveShell.term_title = False
|
||
|
|
c.TerminalInteractiveShell.true_color = True
|
||
|
|
|