-
Notifications
You must be signed in to change notification settings - Fork 0
/
init.el
executable file
·39 lines (36 loc) · 1.43 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
;; This is where all the fun begins. Here we define the structure of each emacs file we want.
(defconst user-init-dir
(cond ((boundp 'user-emacs-directory)
user-emacs-directory)
((boundp 'user-init-directory)
user-init-directory)
(t "~/.emacs.d/")))
(defun load-user-file (file)
(interactive "f")
"Load a file in current user's configuration directory"
(load-file (expand-file-name file user-init-dir)))
(load-user-file "personal.el")
(load-user-file "keys.el")
(load-user-file "js.el")
(load-user-file "java.el")
(load-user-file "xml.el")
(load-user-file "theme.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.
'(column-number-mode 1)
'(cua-mode t nil (cua-base))
'(custom-safe-themes
(quote
("8db4b03b9ae654d4a57804286eb3e332725c84d7cdab38463cb6b97d5762ad26" "1297a022df4228b81bc0436230f211bad168a117282c20ddcba2db8c6a200743" default)))
'(inhibit-startup-buffer-menu -1)
'(inhibit-startup-screen -1)
'(initial-frame-alist (quote ((fullscreen . maximized)))))
(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.
)