added custom-settings.el file

This commit is contained in:
syl20bnr 2013-01-29 10:26:30 -05:00
parent 6256af392d
commit 54874ee5f4
2 changed files with 28 additions and 0 deletions

25
custom-settings.el Normal file
View file

@ -0,0 +1,25 @@
;; (custom-set-variables
;; ;; custom-set-variables was added by Custom.
;; ;; If you edit it by hand, you could mess it up, so be careful.
;; ;; Your init file should contain only one such instance.
;; ;; If there is more than one, they won't work right.
;; '(haskell-notify-p t)
;; '(haskell-process-type (quote cabal-dev))
;; '(haskell-stylish-on-save t)
;; '(haskell-tags-on-save t)
;; '(term-default-bg-color "#002b36")
;; '(term-default-fg-color "#93a1a1"))
;; (custom-set-faces
;; ;; custom-set-faces was added by Custom.
;; ;; If you edit it by hand, you could mess it up, so be careful.
;; ;; Your init file should contain only one such instance.
;; ;; If there is more than one, they won't work right.
;; '(popup-face ((t (:background "#586e75" :foreground "#000000"))))
;; '(popup-menu-face ((t (:background "#586e75" :foreground "#000000"))))
;; '(popup-menu-mouse-face ((t (:background "#073642" :foreground "#dc322f" :box (:line-width -1 :style pressed-button)))))
;; '(popup-menu-selection-face ((t (:background "#073642" :foreground "#b58900" :box (:line-width -1 :style pressed-button) :overline "black" :weight bold))))
;; '(popup-scroll-bar-background-face ((t (:background "#586e75"))))
;; '(popup-scroll-bar-foreground-face ((t (:background "#002b36"))))
;; '(popup-tip-face ((t (:background "#586e75" :foreground "#000000" :slant italic)))))
(provide 'custom-settings)

View file

@ -49,3 +49,6 @@
(progn (when (file-exists-p host-directory)
(dolist (l (directory-files host-directory nil "^[^#].*el$"))
(load (concat host-directory l)))))
;; Custom groups settings =====================================================
(require 'custom-settings)