2021-01-31 06:51:41 +00:00
|
|
|
;;; init.el --- Spacemacs Initialization File -*- no-byte-compile: t -*-
|
2015-01-14 04:12:56 +00:00
|
|
|
;;
|
2022-05-31 16:12:58 +00:00
|
|
|
;; Copyright (c) 2012-2022 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.
|
|
|
|
;;
|
2021-03-24 03:31:44 +00:00
|
|
|
;; This program is free software; you can redistribute it and/or modify
|
|
|
|
;; it under the terms of the GNU General Public License as published by
|
|
|
|
;; the Free Software Foundation, either version 3 of the License, or
|
|
|
|
;; (at your option) any later version.
|
|
|
|
;;
|
|
|
|
;; This program is distributed in the hope that it will be useful,
|
|
|
|
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
;; GNU General Public License for more details.
|
|
|
|
;;
|
|
|
|
;; You should have received a copy of the GNU General Public License
|
|
|
|
;; along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
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
|
2023-01-03 06:54:16 +00:00
|
|
|
|
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)
|
2022-08-11 00:00:05 +00:00
|
|
|
(load (concat (file-name-directory load-file-name) "core/core-load-paths")
|
2018-06-10 06:49:51 +00:00
|
|
|
nil (not init-file-debug))
|
2022-08-11 00:00:05 +00:00
|
|
|
(load (concat spacemacs-core-directory "core-versions")
|
2018-06-10 06:49:51 +00:00
|
|
|
nil (not init-file-debug))
|
2021-12-04 00:00:32 +00:00
|
|
|
(load (concat spacemacs-core-directory "core-dumper")
|
2018-06-10 06:49:51 +00:00
|
|
|
nil (not init-file-debug))
|
2015-01-14 04:12:56 +00:00
|
|
|
|
2021-02-11 13:52:32 +00:00
|
|
|
;; Remove compiled core files if they become stale or Emacs version has changed.
|
2021-12-04 00:00:32 +00:00
|
|
|
(load (concat spacemacs-core-directory "core-compilation")
|
2021-01-25 14:56:36 +00:00
|
|
|
nil (not init-file-debug))
|
2021-01-31 10:37:17 +00:00
|
|
|
(load spacemacs--last-emacs-version-file t (not init-file-debug))
|
2021-02-11 13:52:32 +00:00
|
|
|
(when (or (not (string= spacemacs--last-emacs-version emacs-version))
|
2022-08-10 00:00:11 +00:00
|
|
|
(> 0 (spacemacs//dir-byte-compile-state
|
|
|
|
(concat spacemacs-core-directory "libs/"))))
|
2021-02-11 13:52:32 +00:00
|
|
|
(spacemacs//remove-byte-compiled-files-in-dir spacemacs-core-directory))
|
|
|
|
;; Update saved Emacs version.
|
|
|
|
(unless (string= spacemacs--last-emacs-version emacs-version)
|
2021-01-31 10:37:17 +00:00
|
|
|
(spacemacs//update-last-emacs-version))
|
2021-01-25 14:56:36 +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)
|
2022-08-14 08:58:48 +00:00
|
|
|
;; Disabling file-name-handlers for a speed boost during init might seem like
|
|
|
|
;; a good idea but it causes issues like
|
|
|
|
;; https://github.com/syl20bnr/spacemacs/issues/11585 "Symbol's value as
|
|
|
|
;; variable is void: \213" when emacs is not built having:
|
|
|
|
;; `--without-compress-install`
|
|
|
|
(let ((please-do-not-disable-file-name-handler-alist nil))
|
2018-02-03 20:20:23 +00:00
|
|
|
(require 'core-spacemacs)
|
2019-07-27 03:00:47 +00:00
|
|
|
(spacemacs/dump-restore-load-path)
|
2018-02-03 20:20:23 +00:00
|
|
|
(configuration-layer/load-lock-file)
|
|
|
|
(spacemacs/init)
|
2019-08-23 04:51:21 +00:00
|
|
|
(configuration-layer/stable-elpa-init)
|
2018-02-03 20:20:23 +00:00
|
|
|
(configuration-layer/load)
|
|
|
|
(spacemacs-buffer/display-startup-note)
|
|
|
|
(spacemacs/setup-startup-hook)
|
2019-07-27 02:45:12 +00:00
|
|
|
(spacemacs/dump-eval-delayed-functions)
|
2018-05-20 08:41:43 +00:00
|
|
|
(when (and dotspacemacs-enable-server (not (spacemacs-is-dumping-p)))
|
|
|
|
(require 'server)
|
2018-03-04 13:34:05 +00:00
|
|
|
(when dotspacemacs-server-socket-dir
|
|
|
|
(setq server-socket-dir dotspacemacs-server-socket-dir))
|
2018-05-20 08:41:43 +00:00
|
|
|
(unless (server-running-p)
|
|
|
|
(message "Starting a server...")
|
2019-07-27 02:44:11 +00:00
|
|
|
(server-start)))))
|