0010-customize.el 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. (setq custom-file "~/.emacs.d/init.d/0010-customize.el")
  2. (custom-set-variables
  3. ;; custom-set-variables was added by Custom.
  4. ;; If you edit it by hand, you could mess it up, so be careful.
  5. ;; Your init file should contain only one such instance.
  6. ;; If there is more than one, they won't work right.
  7. '(ansi-color-names-vector
  8. ["#2d3743" "#ff4242" "#74af68" "#dbdb95" "#34cae2" "#008b8b" "#00ede1" "#e1e1e0"])
  9. '(browse-url-browser-function (quote eww-browse-url))
  10. '(coffee-indent-tabs-mode nil)
  11. '(coffee-tab-width 4)
  12. '(cursor-type (quote box))
  13. '(custom-enabled-themes nil)
  14. '(custom-safe-themes
  15. (quote
  16. ("ebfa8d0654af120fff174bc7ec08bf1fef63df97bdeff63161dbff6f61cef747" default)))
  17. '(electric-indent-mode nil)
  18. '(erc-menu-mode t)
  19. '(erc-nick "jordan")
  20. '(erc-server "localhost")
  21. '(fci-rule-color "#f8fce8")
  22. '(hl-paren-background-colors (quote ("#e8fce8" "#c1e7f8" "#f8e8e8")))
  23. '(hl-paren-colors (quote ("#40883f" "#0287c8" "#b85c57")))
  24. '(indent-tabs-mode nil)
  25. '(sml/active-background-color "#98ece8")
  26. '(sml/active-foreground-color "#424242")
  27. '(sml/inactive-background-color "#4fa8a8")
  28. '(sml/inactive-foreground-color "#424242")
  29. '(tool-bar-mode nil))
  30. (custom-set-faces
  31. ;; custom-set-faces was added by Custom.
  32. ;; If you edit it by hand, you could mess it up, so be careful.
  33. ;; Your init file should contain only one such instance.
  34. ;; If there is more than one, they won't work right.
  35. '(erc-input-face ((t (:foreground "cyan"))))
  36. '(erc-my-nick-face ((t (:foreground "cyan" :weight bold))))
  37. '(magit-diff-added ((t (:background "#ddffdd" :foreground "#000000"))))
  38. '(magit-diff-added-highlight ((t (:background "#cceecc" :foreground "#000000"))))
  39. '(magit-diff-base ((t (:background "#ffffcc" :foreground "#000000"))))
  40. '(magit-diff-base-highlight ((t (:background "#eeeebb" :foreground "#000000"))))
  41. '(magit-diff-removed ((t (:background "#ffdddd" :foreground "#000000"))))
  42. '(magit-diff-removed-highlight ((t (:background "#eecccc" :foreground "#000000"))))
  43. '(magit-section-highlight ((t (:background "grey95" :foreground "black"))))
  44. '(menu ((t (:inverse-video t))))
  45. '(tty-menu-disabled-face ((t (:background "black" :foreground "white"))))
  46. '(tty-menu-enabled-face ((t (:background "black" :foreground "green" :weight bold))))
  47. '(tty-menu-selected-face ((t (:background "green" :foreground "black")))))