mirror of
https://github.com/jimeh/.emacs.d.git
synced 2026-02-19 13:46:41 +00:00
- 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.
18 lines
380 B
EmacsLisp
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
|