-
Notifications
You must be signed in to change notification settings - Fork 0
/
init.el
executable file
·42 lines (27 loc) · 1.11 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
;;; init.el --- Personal configuration -*- coding: utf-8; lexical-binding: t -*-
;;; Commentary:
;;; Code:
;;----------------------------------------------;;
;; Setup ---------------------------------------;;
;;----------------------------------------------;;
(setq debug-on-error t)
(setq load-prefer-newer t)
;; ^ never accidentally `load' outdated (byte-compiled) files.
;;----------------------------------------------;;
;; Configuration -------------------------------;;
;;----------------------------------------------;;
(setq custom-file "~/.emacs.d/sboo/sboo-custom.el")
;; ^ redirect custom file early (for `customize') .
(progn
(setq sboo-init-file "~/.emacs.d/sboo/sboo-init.el")
(load sboo-init-file nil nil t t)
)
;;(call-interactively #'server-start)
;;----------------------------------------------;;
;; Teardown ------------------------------------;;
;;----------------------------------------------;;
(setq debug-on-error nil)
;;; init.el ends here
;;----------------------------------------------;;
;; Customization -------------------------------;;
;;----------------------------------------------;;