-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinit.el
62 lines (53 loc) · 1.39 KB
/
init.el
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
;;; init.el First thing to get loaded when Emacs starts.
;; Added by Package.el. This must come before configurations of
;; installed packages. Don't delete this line. If you don't want it,
;; just comment it out by adding a semicolon to the start of the line.
;; You may delete these explanatory comments.
;;; Code:
(defvar *emacs-load-start* (current-time))
(setenv "LANG" "en_US.UTF-8")
;; Set paths
(add-to-list 'load-path (expand-file-name "~/.config/emacs/anil") t)
(add-to-list 'load-path (expand-file-name "~/.config/emacs/vendor") t)
(setq custom-file "~/.config/emacs/anil/custom.el")
(load custom-file)
;; load packages.el
(load "packages")
(load "path")
(load "anil-delight")
(load "anil-theme")
(load "local")
(load ".private")
(load "anil-font")
;; (load "anil-eglot")
(load "anil-lsp")
(load "anil-ruby")
(load "anil-dash")
(load "anil-hydra")
(load "anil-flycheck")
(load "anil-js")
(load "anil-company")
(load "anil-markdown")
(load "anil-recentf")
(load "anil-magit")
(load "anil-counsel")
(load "anil-treemacs")
(load "anil-uniquify")
(load "anil-web")
(load "anil-yaml")
(load "anil-yasnippet")
(load "anil-ispell")
(load "anil-org")
(load "anil-elixir")
(load "anil-postgres")
(load "anil-ido")
(load "defuns")
(load "modes")
(load "anil-projectile")
(load "preferences")
(load "backups")
(load "key-bindings")
(server-start)
(message (emacs-init-time))
(provide 'init)
;;; init.el ends here