7a288656b1
1. Make sure debug-on-error stays on 2. Force verbose loading 3. Detect long requires and loads (with --timed-requires) 4. Start profiler (with --profile)
34 lines
1.1 KiB
EmacsLisp
34 lines
1.1 KiB
EmacsLisp
;;; init.el --- Spacemacs Initialization File
|
|
;;
|
|
;; Copyright (c) 2012-2014 Sylvain Benner
|
|
;; Copyright (c) 2014-2015 Sylvain Benner & Contributors
|
|
;;
|
|
;; Author: Sylvain Benner <sylvain.benner@gmail.com>
|
|
;; URL: https://github.com/syl20bnr/spacemacs
|
|
;;
|
|
;; This file is not part of GNU Emacs.
|
|
;;
|
|
;;; License: GPLv3
|
|
|
|
;; Without this comment emacs25 adds (package-initialize) here
|
|
;; (package-initialize)
|
|
|
|
(setq gc-cons-threshold 100000000)
|
|
(defconst spacemacs-version "0.105.0" "Spacemacs version.")
|
|
(defconst spacemacs-emacs-min-version "24.3" "Minimal version of Emacs.")
|
|
|
|
(defun spacemacs/emacs-version-ok ()
|
|
(version<= spacemacs-emacs-min-version emacs-version))
|
|
|
|
(when (spacemacs/emacs-version-ok)
|
|
(load-file (concat user-emacs-directory "core/core-load-paths.el"))
|
|
(when init-file-debug
|
|
(require 'core-debug))
|
|
(require 'core-spacemacs)
|
|
(require 'core-configuration-layer)
|
|
(spacemacs/init)
|
|
(spacemacs/maybe-install-dotfile)
|
|
(configuration-layer/sync)
|
|
(spacemacs/setup-startup-hook)
|
|
(require 'server)
|
|
(unless (server-running-p) (server-start)))
|