bd432752bc
This has a benefit of not assuming that the user .emacs.d/ is in the user home directory. Should continue to work as expected when this is the case, but you could also start a fresh Emacs session like so (assumes OSX): open -a Emacs.app -n --args -q -l /path/to/emacs.d/init.el So you don't have to muddle with symlinking your ~/.emacs.d or replacing it with another just to try Spacemacs (or any other config). Note, that this won't work with `after-init-hook` which doesn't appear to run when Emacs is run with -q flag. As a result the `dotspacemacs/config` in your .spacemacs won't run.
44 lines
1.4 KiB
EmacsLisp
44 lines
1.4 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)
|
|
|
|
(defconst spacemacs-version "0.104.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))
|
|
|
|
(defun spacemacs/this-file ()
|
|
"Return true path to this file."
|
|
(cond
|
|
(load-in-progress load-file-name)
|
|
((and (boundp 'byte-compile-current-file) byte-compile-current-file)
|
|
byte-compile-current-file)
|
|
(:else (buffer-file-name))))
|
|
|
|
;; Always use emacs.d/ of the init.el supplied
|
|
(setq user-emacs-directory (file-name-directory
|
|
(file-truename
|
|
(spacemacs/this-file))))
|
|
|
|
(when (spacemacs/emacs-version-ok)
|
|
(load-file (concat user-emacs-directory "core/core-load-paths.el"))
|
|
(require 'core-spacemacs)
|
|
(require 'core-configuration-layer)
|
|
(spacemacs/init)
|
|
(configuration-layer/sync)
|
|
(spacemacs/setup-startup-hook)
|
|
(spacemacs/maybe-install-dotfile)
|
|
(require 'server)
|
|
(unless (server-running-p) (server-start)))
|