Commit 2fad17be authored by Dom Sekotill's avatar Dom Sekotill
Browse files

Add extra settings for IPython

parent 01a0e80c
Loading
Loading
Loading
Loading
+9 −0
Original line number Diff line number Diff line
import six
import logging
from os.path import join, dirname
python_exe = 'python3' if six.PY3 else 'python2'

@@ -22,3 +23,11 @@ c.AliasManager.user_aliases = [
	('python3', 'python3'),
	('pip', '{0} -m pip'.format(python_exe)),
]

c.InteractiveShellApp.exec_lines = [
	'from importlib import reload',
]

c.InteractiveShellApp.log_level = logging.DEBUG
c.TerminalInteractiveShell.confirm_exit = False
c.TerminalInteractiveShell.editing_mode = 'vi'