Created
November 1, 2018 06:54
-
-
Save kk6/c89fbca34997a60c5af87d21b390ff0f to your computer and use it in GitHub Desktop.
ptpythonの設定(~/.ptpython/config.py)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Source: https://github.com/jonathanslenders/ptpython/blob/master/examples/ptpython_config/config.py | |
# Pygments CSS Themes: http://jwarby.github.io/jekyll-pygments-themes/languages/python.html | |
def configure(repl): | |
repl.vi_mode = True | |
repl.confirm_exit = False | |
repl.highlight_matching_parenthesis = True | |
repl.color_depth = "DEPTH_24_BIT" | |
repl.use_code_colorscheme("native") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
カラースキームがデフォルトだと自分の環境では見づらかったので変えてみた。
ソースコード読んでみたらPygmentsのテーマなら呼び出せるみたいだったのでなんかいい感じでテーマ一覧できるサイトないかなと探したら2行目のURLが見つかった。便利。
あとついでにexamplesのconfig.py見ながら好みの設定追加した。