nixos/home/config/ipython_config.py

14 lines
573 B
Python
Raw Normal View History

2024-02-09 12:04:44 +00:00
c = get_config() # type: ignore
c.InteractiveShellApp.exec_PYTHONSTARTUP = False
c.InteractiveShellApp.exec_lines = ["%load_ext autoreload", "%autoreload 2 --print"]
c.InteractiveShellApp.gui = "tk"
c.InteractiveShellApp.matplotlib = "tk"
c.InteractiveShellApp.pylab = "tk"
c.TerminalIPythonApp.gui = "tk"
c.InteractiveShell.color_info = True
c.InteractiveShell.colors = "Linux"
c.TerminalInteractiveShell.editing_mode = "emacs"
c.TerminalInteractiveShell.mouse_support = False
c.TerminalInteractiveShell.true_color = False
2024-02-09 12:04:44 +00:00
c.Application.log_datefmt = "%Y-%m-%d %H:%M:%S"