You can create ipython profile if not exists and override style
check if ipython_config.py presents under ~/.ipython/profile_default/ if not then you can run this command to create it
ipython profile create
open ipython_config.py file in any editor of your like and uncomment and update this option
from pygments.token import Token
c.TerminalInteractiveShell.highlighting_style_overrides = {
Token.MatchingBrackets.Other : '#FF00FF', # nested brackets color
Token.MatchingBracket.Other : '#FF00FF', # bracket color
Token.MatchingBracket.Cursor : '#4b3588', # on cursor over bracket color
Token.MatchingBrackets.Cursor : '#4b3588', # on cursor over nested matching brackets color
}
For Build in token check here, for Styling info check here
3
Answers
In your Terminal, click Edit > Profile Preferences > Colors
See the Text and Background Color.
You can create ipython profile if not exists and change theme
check if
ipython_config.py
presents under~/.ipython/profile_default/
if not then you can run this command to create itopen
ipython_config.py
file in any editor of your like and uncomment and update these options as you likeYou can create ipython profile if not exists and override style
check if
ipython_config.py
presents under~/.ipython/profile_default/
if not then you can run this command to create itopen
ipython_config.py
file in any editor of your like and uncomment and update this optionFor Build in token check here, for Styling info check here
For how i get to know ipython uses pygments for customization check here