-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.emacs
65 lines (55 loc) · 2.14 KB
/
.emacs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
;; -*- Mode: Emacs-Lisp -*-
;;
;; GNU emacs startup file
;; Adam Spiers
;;
;; Stop Red Hat trampling over my nice config :-(
(setq inhibit-default-init t)
;; Duplicated in as-pre-init-d to allow standalone byte-compilation
(defvar edotdir
(or (getenv "ZDOTDIR") "~")
"Home directory to be used to retrieve emacs init files.")
(setq user-emacs-directory (expand-file-name ".emacs.d" edotdir))
(defvar as-init-d-suffix ".emacs.d/init.d")
(message "Using emacs config from %s" edotdir)
(load (concat edotdir "/" as-init-d-suffix "/as-pre-init-d"))
(require 'cl) ;; for remove-if-not
(defun as-find-hooks (hook-name)
"Uses $ZDOT_FIND_HOOKS to return a list of hooks for `hook-name'."
(let* ((lines (split-string
(shell-command-to-string (concat ". $ZDOT_FIND_HOOKS " hook-name))
"\n"
'omit-nulls))
(files (remove-if-not (lambda (file) (string-match "\\.el\\'" file)) lines)))
(mapcar
;; trim .el from end to allow `load' to use byte-compiled form
(lambda (file)
(if (string-match "\\.el\\'" file)
(replace-match "" nil t file)
file))
files)))
;; Call (package-initialize) exactly when we want (actually never, because
;; we're using straight.el now).
(setq package-enable-at-startup nil)
(defun as-load-hooks (hook-name)
"Load hooks found by `as-find-hooks'."
(dolist (hook-file (as-find-hooks hook-name))
(as-load-hook hook-file)))
(defun as-load-hook (hook-file)
"Load the given hook file."
(let ((feature (intern (file-name-nondirectory hook-file))))
(as-progress "loading %s... " (abbreviate-file-name hook-file))
(let ((loaded (require feature hook-file)))
(as-progress
(if loaded "loading %s... done" "ERROR: failed to load %s")
(abbreviate-file-name hook-file)))
;; Canary for forward-word weirdness
;; https://gist.github.com/aspiers/775ce717bd06d43d7adb
;;
;; (with-current-buffer (find-file "~/.emacs")
;; (goto-char (point-min))
;; (forward-word))
))
(unless (or (getenv "EMACS_BATCH") (getenv "DEBUG_EMACS_INIT"))
(as-load-hooks as-init-d-suffix))
(as-progress "end of ~/.emacs")