2015-01-14 04:12:56 +00:00
|
|
|
;;; init.el --- Spacemacs Initialization File
|
|
|
|
;;
|
2018-01-04 07:00:25 +00:00
|
|
|
;; Copyright (c) 2012-2018 Sylvain Benner & Contributors
|
2015-01-14 04:12:56 +00:00
|
|
|
;;
|
|
|
|
;; Author: Sylvain Benner <sylvain.benner@gmail.com>
|
|
|
|
;; URL: https://github.com/syl20bnr/spacemacs
|
|
|
|
;;
|
|
|
|
;; This file is not part of GNU Emacs.
|
|
|
|
;;
|
|
|
|
;;; License: GPLv3
|
2015-06-18 01:10:13 +00:00
|
|
|
|
|
|
|
;; Without this comment emacs25 adds (package-initialize) here
|
|
|
|
;; (package-initialize)
|
|
|
|
|
2018-01-28 18:35:01 +00:00
|
|
|
;; Avoid garbage collection during startup.
|
2018-01-29 04:22:38 +00:00
|
|
|
;; see `SPC h . dotspacemacs-gc-cons' for more info
|
2018-03-31 04:31:52 +00:00
|
|
|
(defconst emacs-start-time (current-time))
|
2018-01-29 04:22:38 +00:00
|
|
|
(setq gc-cons-threshold 402653184 gc-cons-percentage 0.6)
|
2017-11-12 15:04:12 +00:00
|
|
|
(load-file (concat (file-name-directory load-file-name)
|
|
|
|
"core/core-versions.el"))
|
|
|
|
(load-file (concat (file-name-directory load-file-name)
|
|
|
|
"core/core-load-paths.el"))
|
2018-05-06 03:01:37 +00:00
|
|
|
(load-file (concat spacemacs-core-directory "core-dumper.el"))
|
2015-01-14 04:12:56 +00:00
|
|
|
|
2015-12-01 05:54:39 +00:00
|
|
|
(if (not (version<= spacemacs-emacs-min-version emacs-version))
|
2017-01-11 11:04:08 +00:00
|
|
|
(error (concat "Your version of Emacs (%s) is too old. "
|
|
|
|
"Spacemacs requires Emacs version %s or above.")
|
|
|
|
emacs-version spacemacs-emacs-min-version)
|
2018-02-03 20:20:23 +00:00
|
|
|
;; Disable file-name-handlers for a speed boost during init
|
|
|
|
(let ((file-name-handler-alist nil))
|
|
|
|
(require 'core-spacemacs)
|
2018-03-31 04:31:52 +00:00
|
|
|
(spacemacs|unless-dumping
|
|
|
|
(when (boundp 'load-path-backup)
|
|
|
|
(setq load-path load-path-backup)))
|
2018-02-03 20:20:23 +00:00
|
|
|
(configuration-layer/load-lock-file)
|
|
|
|
(spacemacs/init)
|
|
|
|
(configuration-layer/stable-elpa-download-tarball)
|
|
|
|
(configuration-layer/load)
|
|
|
|
(spacemacs-buffer/display-startup-note)
|
|
|
|
(spacemacs/setup-startup-hook)
|
2018-03-31 04:31:52 +00:00
|
|
|
(spacemacs|unless-dumping
|
|
|
|
(global-font-lock-mode)
|
2018-03-31 05:16:43 +00:00
|
|
|
(global-undo-tree-mode t)
|
|
|
|
(winner-mode t))
|
2018-05-20 08:41:43 +00:00
|
|
|
(when (and dotspacemacs-enable-server (not (spacemacs-is-dumping-p)))
|
|
|
|
(require 'server)
|
|
|
|
(unless (server-running-p)
|
|
|
|
(message "Starting a server...")
|
|
|
|
(server-start)))
|
2018-03-31 04:31:52 +00:00
|
|
|
(spacemacs|when-dumping-strict
|
|
|
|
(setq load-path-backup load-path)
|
|
|
|
;; disable undo-tree to prevent from segfaulting when loading the dump
|
|
|
|
(global-undo-tree-mode -1)
|
|
|
|
(setq spacemacs-dump-mode 'dumped)
|
|
|
|
(garbage-collect))))
|