-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathinit.el
More file actions
37 lines (31 loc) · 1.17 KB
/
init.el
File metadata and controls
37 lines (31 loc) · 1.17 KB
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
(setq native-comp-enable-subprocess t)
(setq native-comp-deferred-compilation t)
(setq native-comp-async-report-warnings-errors nil)
(defun restore-mode-line ()
(setq-default mode-line-format
'("%e"
mode-line-front-space
mode-line-mule-info
mode-line-client
mode-line-modified
mode-line-remote
mode-line-frame-identification
mode-line-buffer-identification
" "
mode-line-position
(vc-mode vc-mode)
" "
mode-line-modes
mode-line-misc-info
mode-line-end-space)))
(add-hook 'after-init-hook #'restore-mode-line)
(load "~/.emacs.d/custom.el" 'noerror)
(load-file "~/.emacs.d/packages.el")
(mapc 'load (directory-files "~/.emacs.d/lisp" t "^[A-Za-z-]*\\.el"))
(load-file "~/.emacs.d/bindings.el")
(load-file "~/.emacs.d/settings.el")
(load-file "~/.emacs.d/interface.el")
(load-file "~/.emacs.d/platform.el")
(setq user-full-name "Mark Tran"
user-mail-address "mark.tran@gmail.com")
(load "~/.emacs.d/local.el" 'noerror)