mirror of
https://git.decapod.one/brethil/dotfiles
synced 2024-11-14 15:51:30 +01:00
55 lines
1.1 KiB
Python
55 lines
1.1 KiB
Python
import pdb
|
|
|
|
|
|
class Config(pdb.DefaultConfig):
|
|
sticky_by_default = True
|
|
pygments_formatter_class = "pygments.formatters.TerminalTrueColorFormatter"
|
|
pygments_formatter_kwargs = {"style": "solarized-dark"}
|
|
use_pygments = True
|
|
editor = "vim"
|
|
|
|
|
|
if __name__ == "__main__":
|
|
from pygments.styles import get_all_styles
|
|
|
|
all_styles = get_all_styles()
|
|
print(list(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",
|
|
# ]
|