mirror of
https://git.decapod.one/brethil/dotfiles
synced 2024-11-21 19:11:30 +01:00
pdbrc: add style options
This commit is contained in:
parent
d600f2d413
commit
cfcf80dea4
51
pdbrc.py
51
pdbrc.py
|
@ -1,4 +1,53 @@
|
|||
import pdb
|
||||
|
||||
if False:
|
||||
from pygments.styles import get_all_styles
|
||||
|
||||
all_styles = get_all_styles()
|
||||
|
||||
all_styles = [
|
||||
"default",
|
||||
"emacs",
|
||||
"friendly",
|
||||
"colorful",
|
||||
"autumn",
|
||||
"murphy",
|
||||
"manni",
|
||||
"monokai",
|
||||
"perldoc",
|
||||
"pastie",
|
||||
"borland",
|
||||
"trac",
|
||||
"native",
|
||||
"fruity",
|
||||
"bw",
|
||||
"vim",
|
||||
"vs",
|
||||
"tango",
|
||||
"rrt",
|
||||
"xcode",
|
||||
"igor",
|
||||
"paraiso-light",
|
||||
"paraiso-dark",
|
||||
"lovelace",
|
||||
"algol",
|
||||
"algol_nu",
|
||||
"arduino",
|
||||
"rainbow_dash",
|
||||
"abap",
|
||||
"solarized-dark",
|
||||
"solarized-light",
|
||||
"sas",
|
||||
"stata",
|
||||
"stata-light",
|
||||
"stata-dark",
|
||||
"inkpot",
|
||||
]
|
||||
|
||||
|
||||
class Config(pdb.DefaultConfig):
|
||||
sticky_by_default = True
|
||||
sticky_by_default = True
|
||||
pygments_formatter_class = "pygments.formatters.TerminalTrueColorFormatter"
|
||||
pygments_formatter_kwargs = {"style": "solarized-dark"}
|
||||
use_pygments = True
|
||||
editor = "vim"
|
||||
|
|
Loading…
Reference in New Issue
Block a user