spacemacs/init.el
syl20bnr 018f0768e6 Refactoring of config-system.el
Would be easier to improve helm-spacemacs and code
unit tests (in fact the pre-refactoring version was
not unit testable)
2014-12-21 02:52:52 -05:00

22 lines
777 B
EmacsLisp

(load (concat user-emacs-directory "core/spacemacs-mode.el"))
(require 'config-system)
(when (spacemacs/emacs-version-ok)
(dotspacemacs/load)
(spacemacs/initialize)
(config-system/package.el-initialize)
;; Initializing configuration from ~/.spacemacs
(dotspacemacs|call-func dotspacemacs/init)
;; synchronize and load configuration layers
(config-system/declare-layers)
(config-system/load-layers)
(config-system/delete-orphan-packages)
;; Ultimate configuration decisions are given to the user who can defined
;; them in his/her ~/.spacemacs file
(dotspacemacs|call-func dotspacemacs/config)
(config-system/setup-after-init-hook)
;; start a server for subsequent emacs clients
(require 'server)
(unless (server-running-p)
(server-start)))