Files
.emacs.d/core/siren-theme.el
Jim Myhrberg b2ce61cf6d Clean up init file
- Move most logic from init.el into core/siren-init.el.
- Move siren-modules.el and siren-theme.el into core/ directory.
- Create core/siren-vendor.el to deal with setting up the vendor load
  paths.
- Let core/siren-modules.el and core/siren-theme.el deal with setting
  up their own relevant load paths.
2017-08-08 02:25:01 +01:00

18 lines
380 B
EmacsLisp

;;; siren-theme.el --- jimeh's Emacs Siren: Theme loading.
;;; Commentary:
;; Load the theme!
;;; Code:
(setq siren-themes-dir (expand-file-name "themes" siren-dir))
(add-to-list 'load-path siren-themes-dir)
(if window-system
(require 'siren-theme-twilight-anti-bright)
(require 'siren-theme-tomorrow-night-paradise))
(provide 'siren-theme)
;;; siren-theme.el ends here