diff options
Diffstat (limited to 'attic')
| -rw-r--r-- | attic/elisp/misc.el | 26 | 
1 files changed, 26 insertions, 0 deletions
diff --git a/attic/elisp/misc.el b/attic/elisp/misc.el index 3e12ec1..b43b3ae 100644 --- a/attic/elisp/misc.el +++ b/attic/elisp/misc.el @@ -1014,3 +1014,29 @@                (("n" . next-line)                 ("p" . previous-line)                 ("g" . jenkins-refresh-console-output)))) + +;;; doric themes +(use-package doric-themes +  :if (jao-is-darwin) +  :ensure t +  :demand t +  :config +  ;; These are the default values. +  (setq doric-themes-to-toggle '(doric-light doric-marble)) +  (setq doric-themes-to-rotate doric-themes-collection) + +  (doric-themes-select 'doric-marble) + +  (set-face-attribute 'default nil :family "Triplicate T4c" :height 120) +  ;; (set-face-attribute 'default nil :family "0xProto" :height 110) +  ;; (set-face-attribute 'default nil :family "Rec Mono Casual" :height 120) +  ;; (set-face-attribute 'default nil :family "Rec Mono Linear" :height 120) +  ;; (set-face-attribute 'default nil :family "Rec Mono Duotone" :height 120) +  ;; (set-face-attribute 'default nil :family "Victor Mono" :height 120) +  ;; (set-face-attribute 'variable-pitch nil :family "Aporetic Sans" :height 1.0) +  ;; (set-face-attribute 'fixed-pitch nil :family "Aporetic Sans Mono" :height 1.0) + +  :bind +  (("<f5>" . doric-themes-toggle) +   ("C-<f5>" . doric-themes-select) +   ("M-<f5>" . doric-themes-rotate)))  | 
