2013-11-20 05:30:23 +00:00
|
|
|
;; 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-06 08:53:38 +00:00
|
|
|
(require 'package)
|
|
|
|
(setq package-archives '(("ELPA" . "http://tromey.com/elpa/")
|
|
|
|
("gnu" . "http://elpa.gnu.org/packages/")
|
|
|
|
("marmalade" . "http://marmalade-repo.org/packages/")
|
|
|
|
("melpa" . "http://melpa.milkbox.net/packages/")))
|
|
|
|
(package-initialize)
|
|
|
|
(setq warning-minimum-level :error)
|
|
|
|
|
2014-09-06 08:52:51 +00:00
|
|
|
(switch-to-buffer (get-buffer-create "*spacemacs*"))
|
|
|
|
(defun append-to-spacemacs-buf (msg)
|
|
|
|
"Append MSG to buffer."
|
|
|
|
(with-current-buffer (get-buffer-create "*spacemacs*")
|
|
|
|
(goto-char (point-max))
|
|
|
|
(insert (format "%s\n" msg))))
|
|
|
|
(defun replace-last-line-of-spacemacs-buf (msg)
|
|
|
|
"Replace the last line of the buffer with MSG."
|
|
|
|
(with-current-buffer (get-buffer-create "*spacemacs*")
|
|
|
|
(goto-char (point-max))
|
|
|
|
(delete-region (line-beginning-position) (point-max))
|
|
|
|
(insert msg)))
|
|
|
|
|
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.")
|
2014-09-01 16:18:34 +00:00
|
|
|
;; if you have a dropbox, then ~/Dropbox/emacs is added to load path
|
|
|
|
(add-to-list 'load-path (concat user-dropbox-directory "emacs/"))
|
2012-12-21 21:06:22 +00:00
|
|
|
|
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"))
|
2014-09-05 04:09:03 +00:00
|
|
|
(contribsys/declare-layer 'spacemacs)
|
|
|
|
(contribsys/declare-configuration-layers)
|
|
|
|
(contribsys/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)
|
2013-11-26 05:24:50 +00:00
|
|
|
|
2014-09-03 06:27:14 +00:00
|
|
|
; from jwiegley
|
2013-11-20 05:30:23 +00:00
|
|
|
;; 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))
|
2013-11-26 05:24:50 +00:00
|
|
|
|