9176e93497
This commit contains the following original ones: [dump] don't assume spacemacs start directory when dumping [dump] dump to a temporary file and atomically rename it [dump] cleanup after dumping
18 lines
722 B
EmacsLisp
18 lines
722 B
EmacsLisp
(setq spacemacs-dump-mode 'dumping)
|
|
;; load init.el
|
|
(setq spacemacs-start-directory (file-name-directory load-file-name))
|
|
(load (concat spacemacs-start-directory "init.el"))
|
|
;; prepare the dump
|
|
(spacemacs/dump-save-load-path)
|
|
;; disable undo-tree to prevent from segfaulting when loading the dump
|
|
(when (fboundp 'global-undo-tree-mode)
|
|
(global-undo-tree-mode -1))
|
|
;; Enable some modes that seem to not survive to the dumping process
|
|
(spacemacs|unless-dumping-and-eval-after-loaded-dump activate-modes
|
|
(global-font-lock-mode)
|
|
(when (fboundp 'global-undo-tree-mode)
|
|
(global-undo-tree-mode t))
|
|
(winner-mode 1))
|
|
(configuration-layer/message "Dumping Emacs...")
|
|
(setq spacemacs-dump-mode 'dumped)
|
|
(garbage-collect)
|