Guest User

Untitled

a guest
May 23rd, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.31 KB | None | 0 0
  1. % emacsclient -t
  2.  
  3. % emacsclient -c
  4.  
  5. (add-to-list 'custom-theme-load-path "~/.emacs.d/themes/solarized")
  6. (if (daemonp)
  7. (add-hook 'after-make-frame-functions
  8. (lambda (frame)
  9. (select-frame frame)
  10. (if (display-graphic-p frame)
  11. (load-theme 'solarized-light t)
  12. (load-theme 'solarized-dark t)
  13. )
  14. )
  15. )
  16. (load-theme 'solarized-light t)
  17. )
  18.  
  19. (defface font-lock-comment-face
  20. '((((class grayscale) (background light))
  21. :foreground "DimGray" :weight bold :slant italic)
  22. (((class grayscale) (background dark))
  23. :foreground "LightGray" :weight bold :slant italic)
  24. (((class color) (min-colors 88) (background light))
  25. :foreground "Firebrick")
  26. (((class color) (min-colors 88) (background dark))
  27. :foreground "chocolate1")
  28. (((class color) (min-colors 16) (background light))
  29. :foreground "red")
  30. (((class color) (min-colors 16) (background dark))
  31. :foreground "red1")
  32. (((class color) (min-colors 8) (background light))
  33. :foreground "red")
  34. (((class color) (min-colors 8) (background dark))
  35. :foreground "yellow")
  36. (t :weight bold :slant italic))
  37. "Font Lock mode face used to highlight comments."
  38. :group 'font-lock-faces)
  39.  
  40. (custom-set-faces
  41. '(default (
  42. (((type tty) (min-colors 256))
  43. (:background "black"))
  44. (t
  45. (:background "#181a26")))
  46. ))
Add Comment
Please, Sign In to add comment