You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

22 lines
753 B

  1. ;;-*-mode: emacs-lisp; coding: utf-8;-*-
  2. ;; use gtk-ide for my color theme, solarized has... issues.
  3. ;; aka with it setup, even from latest git source, it seems to crash
  4. ;; connections with emacsclient due to some face issue.
  5. ;; so eff it, ignore the thing. TODO: find out how/why
  6. ;; emacs segv's on linux/osx with it on, but i'm lazy prolly won't
  7. (color-theme-initialize)
  8. (if (or window-system osx-p)
  9. (color-theme-gtk-ide)
  10. (color-theme-hober))
  11. (unless (or window-system osx-p)
  12. (color-theme-install-frame-params
  13. '((background-color . "white"))))
  14. ;; fixup multi-term fg/bg color support as it doesn't always
  15. ;; pickup defaults
  16. (setq term-default-bg-color (face-background 'default))
  17. (setq term-default-fg-color (face-foreground 'default))