Advertisement
Guest User

Untitled

a guest
Oct 12th, 2017
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.06 KB | None | 0 0
  1. ## The name or class of a Pygments style to use for syntax
  2. # highlighting:
  3. # borland, paraiso-light, bw, emacs, igor, vs, rainbow_dash, perldoc, paraiso-dark, algol, arduino, native, murphy, friendl y, rrt, pastie, autumn, trac, default, tango, monokai, lovelace, abap, colorful, xcode, algol_nu, manni, vim, fruity
  4. c.TerminalInteractiveShell.highlighting_style = "solarizeddark"
  5.  
  6. ## Use 24bit colors instead of 256 colors in prompt highlighting. If your
  7. # terminal supports true color, the following command should print 'TRUECOLOR'
  8. # in orange: printf "\x1b[38;2;255;100;0mTRUECOLOR\x1b[0m\n"
  9. c.TerminalInteractiveShell.true_color = True
  10.  
  11. ## Use 24bit colors instead of 256 colors in prompt highlighting.
  12. c.TerminalInteractiveShell.true_color = True
  13.  
  14. ## Set the color scheme (NoColor, Neutral, Linux, or LightBG).
  15. c.InteractiveShell.colors = 'Linux'
  16.  
  17. # Aliases
  18. c.InteractiveShellApp.exec_lines = [
  19. 'import numpy as np',
  20. 'from pprint import pprint as pp',
  21. 'pd = lambda x: print(dir(x))',
  22. ]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement