Move doom.el into doom-themes.el (fix #12)

This commit is contained in:
Henrik Lissner 2016-09-19 17:40:51 +02:00
parent 246cc37a87
commit a796b332a6
6 changed files with 104 additions and 109 deletions

View file

@ -1,6 +1,6 @@
;; DOOM Molokai (inspired by molokai)
(require 'doom)
(require 'doom-themes)
(deftheme doom-molokai
"A dark theme inspired by molokai")

View file

@ -4,7 +4,7 @@
(defgroup doom-neotree nil
"Options for doom's neotree theme"
:group 'doom)
:group 'doom-themes)
;;
(defface doom-neotree-folder-face '((t (:inherit neo-dir-link-face)))

View file

@ -1,6 +1,6 @@
;; DOOM One Light (inspired by Atom One Light)
(require 'doom)
(require 'doom-themes)
;; (doom-init 'doom-one-light)

View file

@ -1,6 +1,6 @@
;; DOOM One Dark (inspired by Atom One Dark)
(require 'doom)
(require 'doom-themes)
(deftheme doom-one
"A dark theme inspired by Atom One Dark")

View file

@ -57,6 +57,105 @@
;;
;;; Code:
(require 'doom)
(require 'dash)
(defgroup doom-themes nil
"Options for doom-themes"
:group 'faces)
(defface doom-default '((t (:inherit default)))
"Background face for source code windows."
:group 'doom-themes)
(defface doom-minibuffer-active '((t (:inherit mode-line)))
"Face for active minibuffer. See `doom-enable-bright-minibuffer'."
:group 'doom-themes)
(defface doom-linum '((t (:inherit linum)))
"Another linum face for darker windows (like popups)."
:group 'doom-themes)
(defface doom-nlinum-highlight '((t (:inherit linum)))
"A face for the nlinum overlay on the current line."
:group 'doom-themes)
(defface doom-hl-line '((t (:inherit hl-line)))
"A face for the current line highlight."
:group 'doom-themes)
;;
(defcustom doom-enable-bold t
"If nil, bold will remove removed from all faces."
:group 'doom-themes
:type 'boolean)
(defcustom doom-enable-italic t
"If nil, italics will remove removed from all faces."
:group 'doom-themes
:type 'boolean)
;; Color helper functions
;; Shamelessly *borrowed* from solarized
(defun doom-name-to-rgb (color &optional frame)
(mapcar (lambda (x) (/ x (float (car (color-values "#ffffff")))))
(color-values color frame)))
(defun doom-blend (color1 color2 alpha)
(apply (lambda (r g b) (format "#%02x%02x%02x" (* r 255) (* g 255) (* b 255)))
(--zip-with (+ (* alpha it) (* other (- 1 alpha)))
(doom-name-to-rgb color1)
(doom-name-to-rgb color2))))
(defun doom-darken (color alpha)
(doom-blend color "#000000" (- 1 alpha)))
(defun doom-lighten (color alpha)
(doom-blend color "#FFFFFF" (- 1 alpha)))
(defun doom--face-remap-add-relative (orig-fn &rest args)
"Advice function "
(when (and (display-graphic-p) doom-buffer-mode)
(let ((remap (assq (nth 0 args) face-remapping-alist)))
(when remap (setf (nth 0 args) (cadr remap)))))
(apply orig-fn args))
(advice-add 'face-remap-add-relative :around 'doom--face-remap-add-relative)
;;;###autoload
(defun doom-brighten-minibuffer ()
(with-selected-window (minibuffer-window)
(setq-local face-remapping-alist
(append face-remapping-alist '((default doom-minibuffer-active))))))
;;;###autoload
(define-minor-mode doom-buffer-mode
"Brighten source buffers by remapping common faces (like default, hl-line and
linum) to their doom-theme variants."
:lighter " doom"
:init-value nil
(if doom-buffer-mode
(progn
;; Don't reset remapped faces on `kill-all-local-variables'
(make-variable-buffer-local 'face-remapping-alist)
(put 'face-remapping-alist 'permanent-local t)
;; Brighten up file buffers; darken special and popup buffers
(set-face-attribute 'fringe nil :background (face-attribute 'doom-default :background))
(setq-local face-remapping-alist
(append face-remapping-alist
'((default doom-default)
(hl-line doom-hl-line)
(linum doom-linum)))))
(set-face-attribute 'fringe nil :background (face-attribute 'default :background))
(put 'face-remapping-alist 'permanent-local nil)
;; Remove face remaps
(mapc (lambda (key) (setq-local face-remapping-alist (assq-delete-all key face-remapping-alist)))
'(default hl-line linum))))
;;;###autoload
(when (and (boundp 'custom-theme-load-path) load-file-name)
(add-to-list 'custom-theme-load-path
(file-name-as-directory (file-name-directory load-file-name))))
(provide 'doom-themes)
;;; doom-themes.el ends here

104
doom.el
View file

@ -1,104 +0,0 @@
;;; doom.el
(require 'dash)
(defgroup doom nil
"Options for doom"
:group 'faces)
(defface doom-default '((t (:inherit default)))
"Background face for source code windows."
:group 'doom)
(defface doom-minibuffer-active '((t (:inherit mode-line)))
"Face for active minibuffer. See `doom-enable-bright-minibuffer'."
:group 'doom)
(defface doom-linum '((t (:inherit linum)))
"Another linum face for darker windows (like popups)."
:group 'doom)
(defface doom-nlinum-highlight '((t (:inherit linum)))
"A face for the nlinum overlay on the current line."
:group 'doom)
(defface doom-hl-line '((t (:inherit hl-line)))
"A face for the current line highlight."
:group 'doom)
;;
(defcustom doom-enable-bold t
"If nil, bold will remove removed from all faces."
:group 'doom
:type 'boolean)
(defcustom doom-enable-italic t
"If nil, italics will remove removed from all faces."
:group 'doom
:type 'boolean)
;; Color helper functions
;; Shamelessly *borrowed* from solarized
(defun doom-name-to-rgb (color &optional frame)
(mapcar (lambda (x) (/ x (float (car (color-values "#ffffff")))))
(color-values color frame)))
(defun doom-blend (color1 color2 alpha)
(apply (lambda (r g b) (format "#%02x%02x%02x" (* r 255) (* g 255) (* b 255)))
(--zip-with (+ (* alpha it) (* other (- 1 alpha)))
(doom-name-to-rgb color1)
(doom-name-to-rgb color2))))
(defun doom-darken (color alpha)
(doom-blend color "#000000" (- 1 alpha)))
(defun doom-lighten (color alpha)
(doom-blend color "#FFFFFF" (- 1 alpha)))
(defun doom--face-remap-add-relative (orig-fn &rest args)
"Advice function "
(when (and (display-graphic-p) doom-buffer-mode)
(let ((remap (assq (nth 0 args) face-remapping-alist)))
(when remap (setf (nth 0 args) (cadr remap)))))
(apply orig-fn args))
(advice-add 'face-remap-add-relative :around 'doom--face-remap-add-relative)
;;;###autoload
(defun doom-brighten-minibuffer ()
(with-selected-window (minibuffer-window)
(setq-local face-remapping-alist
(append face-remapping-alist '((default doom-minibuffer-active))))))
;;;###autoload
(define-minor-mode doom-buffer-mode
"Brighten source buffers by remapping common faces (like default, hl-line and
linum) to their doom-theme variants."
:lighter " doom"
:init-value nil
(if doom-buffer-mode
(progn
;; Don't reset remapped faces on `kill-all-local-variables'
(make-variable-buffer-local 'face-remapping-alist)
(put 'face-remapping-alist 'permanent-local t)
;; Brighten up file buffers; darken special and popup buffers
(set-face-attribute 'fringe nil :background (face-attribute 'doom-default :background))
(setq-local face-remapping-alist
(append face-remapping-alist
'((default doom-default)
(hl-line doom-hl-line)
(linum doom-linum)))))
(set-face-attribute 'fringe nil :background (face-attribute 'default :background))
(put 'face-remapping-alist 'permanent-local nil)
;; Remove face remaps
(mapc (lambda (key) (setq-local face-remapping-alist (assq-delete-all key face-remapping-alist)))
'(default hl-line linum))))
;;;###autoload
(when (and (boundp 'custom-theme-load-path) load-file-name)
(add-to-list 'custom-theme-load-path
(file-name-as-directory (file-name-directory load-file-name))))
(provide 'doom)
;;; doom.el ends here