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.
21 lines
552 B
EmacsLisp
21 lines
552 B
EmacsLisp
;;; init.el --- jimeh's Emacs Siren: init file.
|
|
|
|
;;; Commentary:
|
|
|
|
;; The file that starts it all.
|
|
|
|
;;; Code:
|
|
|
|
;; I need to keep this here commented out like this to prevent package.el from
|
|
;; automatically adding it again. I call `(package-initalize)' manually from
|
|
;; the `core/siren-packages.el' file that's loaded in further down.
|
|
;;
|
|
;; (package-initialize)
|
|
|
|
;; Always load newest byte code
|
|
(setq load-prefer-newer t)
|
|
(load (expand-file-name "core/siren-init.el"
|
|
(file-name-directory load-file-name)))
|
|
|
|
;;; init.el ends here
|