spacemacs/init.el

47 lines
1.7 KiB
EmacsLisp
Raw Normal View History

;; from jwiegley
;; https://github.com/jwiegley/dot-emacs/blob/master/init.el
(setq message-log-max 16384)
(defconst emacs-start-time (current-time))
2012-12-18 05:48:12 +00:00
2014-09-02 04:23:43 +00:00
(defconst user-home-directory
2012-12-18 05:48:12 +00:00
(expand-file-name (concat user-emacs-directory "../"))
2014-09-02 04:23:43 +00:00
"User home directory (~/).")
(defconst contrib-config-directory
(expand-file-name (concat user-emacs-directory "contrib/"))
"Contribution layers base directory.")
2014-09-03 06:27:14 +00:00
(defconst user-dropbox-directory
2014-08-29 03:59:21 +00:00
(expand-file-name (concat user-home-directory "Dropbox/"))
"Dropbox directory.")
;; if you have a dropbox, then ~/Dropbox/emacs is added to load path
(add-to-list 'load-path (concat user-dropbox-directory "emacs/"))
2014-09-02 04:23:43 +00:00
;; User configuration file for Spacemacs: ~/.spacemacs
(load (concat user-home-directory ".spacemacs"))
(dotspacemacs/init)
2014-09-03 06:27:14 +00:00
(load (concat user-emacs-directory "contribsys.el"))
(spacemacs/declare-layer 'spacemacs)
(spacemacs/declare-configuration-layers)
2014-09-03 06:27:14 +00:00
(spacemacs/load-layers)
2013-11-26 14:46:27 +00:00
2014-09-02 04:23:43 +00:00
;; Last configuration decisions are given to the user who can defined them
;; in ~/.spacemacs
(dotspacemacs/config)
2014-09-03 06:27:14 +00:00
; from jwiegley
;; https://github.com/jwiegley/dot-emacs/blob/master/init.el
;; Display load times after init.el and after all buffers has been loaded
(when window-system
(let ((elapsed (float-time (time-subtract (current-time)
emacs-start-time))))
(message "Loading %s...done (%.3fs)" load-file-name elapsed))
(add-hook 'after-init-hook
`(lambda ()
(let ((elapsed (float-time (time-subtract (current-time)
emacs-start-time))))
(message "Loading %s...done (%.3fs) [after-init]"
,load-file-name elapsed)))
t))