瀏覽代碼

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 查看文件

@@ -14,7 +14,7 @@
;; (load-theme 'tron-legacy t)
;; (load-theme 'base16-tomorrow 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.
;;(setq-default custom-enabled-themes '(sanityinc-solarized-light))
@@ -35,12 +35,14 @@
(defun light ()
"Activate a light color theme."
(interactive)
(color-theme-sanityinc-solarized-light))
;; (color-theme-sanityinc-solarized-light))
(load-theme 'base16-harmonic16-light t))

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


(provide 'init-themes)

Loading…
取消
儲存