# HG changeset patch # User zegervdv # Date 1646474754 -3600 # Node ID cffb5f8caafaa4a8bf7f4802b1d7ed65af85c74a # Parent 8b04d5ffd2103a03c3de467f6ae1f996f9dabd74 Set colorscheme in ipython diff -r 8b04d5ffd210 -r cffb5f8caafa dot_ipython/profile_default/ipython_config.py --- a/dot_ipython/profile_default/ipython_config.py Fri Mar 04 10:35:44 2022 +0100 +++ b/dot_ipython/profile_default/ipython_config.py Sat Mar 05 11:05:54 2022 +0100 @@ -1,4 +1,6 @@ c.TerminalInteractiveShell.confirm_exit = False c.TerminalInteractiveShell.editing_mode = 'vi' +c.TerminalInteractiveShell.true_color = True +c.TerminalInteractiveShell.highlighting_style = 'one-dark' c.InteractiveShellApp.extensions = ["autoreload"] c.InteractiveShellApp.exec_lines = ['%autoreload 2']