From c71f4a83a3709b86d32133462461053b9b804f34 Mon Sep 17 00:00:00 2001 From: bretello Date: Fri, 15 Sep 2023 10:23:01 +0200 Subject: [PATCH] ipython: make config saner --- ipython/profile_default/ipython_config.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/ipython/profile_default/ipython_config.py b/ipython/profile_default/ipython_config.py index 44c39dd..89b92ec 100644 --- a/ipython/profile_default/ipython_config.py +++ b/ipython/profile_default/ipython_config.py @@ -1,3 +1,5 @@ -c.TerminalInteractiveShell.editing_mode = "vi" -c.TerminalInteractiveShell.mouse_support = True # prevents from selecting text -c.TerminalInteractiveShell.true_color = True +config = get_config() + +config.TerminalInteractiveShell.editing_mode = "vi" +config.TerminalInteractiveShell.mouse_support = True # prevents from selecting text +config.TerminalInteractiveShell.true_color = True