浏览代码

Fix base16 theme name

master
Bingen Eguzkitza 2 年前
父节点
当前提交
0b7d66a229
共有 1 个文件被更改,包括 5 次插入3 次删除
  1. +5
    -3
      lisp/init-themes.el

+ 5
- 3
lisp/init-themes.el 查看文件

;; (load-theme 'tron-legacy t) ;; (load-theme 'tron-legacy t)
;; (load-theme 'base16-tomorrow t) ;; (load-theme 'base16-tomorrow t)
;; (load-theme 'base16-tomorrow-night t) ;; (load-theme 'base16-tomorrow-night t)
(load-theme 'base16-harmonic-light t)
(load-theme 'base16-harmonic16-light t)


;; If you don't customize it, this is the theme you get. ;; If you don't customize it, this is the theme you get.
;;(setq-default custom-enabled-themes '(sanityinc-solarized-light)) ;;(setq-default custom-enabled-themes '(sanityinc-solarized-light))
(defun light () (defun light ()
"Activate a light color theme." "Activate a light color theme."
(interactive) (interactive)
(color-theme-sanityinc-solarized-light))
;; (color-theme-sanityinc-solarized-light))
(load-theme 'base16-harmonic16-light t))


(defun dark () (defun dark ()
"Activate a dark color theme." "Activate a dark color theme."
(interactive) (interactive)
(color-theme-sanityinc-solarized-dark))
;; (color-theme-sanityinc-solarized-dark))
(load-theme 'base16-harmonic16-dark t))




(provide 'init-themes) (provide 'init-themes)

正在加载...
取消
保存