From ebb96b94071b9759d4b0562c1f5221c63823558f Mon Sep 17 00:00:00 2001 From: xatier Date: Sun, 25 Feb 2024 02:42:52 -0600 Subject: [PATCH] feat(ipython): tweak color scheme and enable pdb by default --- ipython_config.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ipython_config.py b/ipython_config.py index 7411ad3..e11bdce 100644 --- a/ipython_config.py +++ b/ipython_config.py @@ -205,7 +205,7 @@ #c.InteractiveShell.color_info = True ## Set the color scheme (NoColor, Neutral, Linux, or LightBG). -#c.InteractiveShell.colors = 'Neutral' +c.InteractiveShell.colors = 'Linux' ## #c.InteractiveShell.debug = False @@ -249,7 +249,7 @@ #c.InteractiveShell.object_info_string_level = 0 ## Automatically call the pdb debugger after every exception. -#c.InteractiveShell.pdb = False +c.InteractiveShell.pdb = True ## Deprecated since IPython 4.0 and ignored since 5.0, set # TerminalInteractiveShell.prompts object directly.