-
Notifications
You must be signed in to change notification settings - Fork 0
/
_emacs
executable file
·46 lines (38 loc) · 1.26 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
;; Add this to the .emacs to get it to load this as the init script
;; (add-to-list 'load-path "~/emacs")
;; (load "_emacs")
;; local directory of plugins
;;(add-to-list 'load-path "~/.emacs.d/")
(add-to-list 'load-path "~/emacs/flycheck")
(when (require 'flycheck nil 'noerror)
(add-hook 'after-init-hook #'global-flycheck-mode))
(load "funcs.el")
(if (eq system-type 'darwin)
(load "mac-config.el")
)
(if (eq system-type 'gnu/linux)
(load "linux-config.el")
)
(load "environment.el")
(load "libraries.el")
(load "lithium-config.el")
(load "shortcuts.el")
(load "javascript-config.el")
;; (load "php-config.el")
;;(load "python-config.el")
;;(load "go-config.el")
;; (load "java-config.el")
;; (load "erlang-config.el")
;; (load "watch-queue.el")
(custom-set-variables
;; custom-set-variables was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
)
(custom-set-faces
;; custom-set-faces was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
)