spacemacs/init.el

31 lines
866 B
EmacsLisp
Raw Normal View History

(load (concat user-emacs-directory "core/spacemacs-mode.el"))
(require 'config-system)
2012-12-18 05:48:12 +00:00
2014-11-28 04:14:51 +00:00
(dotspacemacs/load)
;; spacemacs special buffer
(spacemacs/buffer)
(unless (not (spacemacs/emacs-version-ok))
(config-system/package.el-initialize)
2014-11-22 03:06:04 +00:00
;; Initializing configuration from ~/.spacemacs
(dotspacemacs|call-func dotspacemacs/init)
2014-11-22 03:06:04 +00:00
;; Load configuration layers
(config-system/declare-layer 'spacemacs)
(config-system/declare-dotspacemacs-configuration-layers)
(config-system/load-layers)
(config-system/delete-orphan-packages)
2014-11-22 03:06:04 +00:00
;; 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)))