-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinit.el
More file actions
55 lines (46 loc) · 1.32 KB
/
init.el
File metadata and controls
55 lines (46 loc) · 1.32 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
;;; init.el --- Load the full configuration -*- lexical-binding: t -*-
;;; Commentary:
;; This file bootstraps the configuration, which is divided into
;; a number of other files.
;;; Code:
;; Produce backtraces when errors occur: can be helpful to diagnose startup issues
;; (setq debug-on-error t)
;; add ~/.emacs.d/lisp to load path
(add-to-list 'load-path (expand-file-name "lisp" user-emacs-directory))
(add-to-list 'load-path (expand-file-name ".ymacs.d" (getenv "HOME")))
(defvar emacs-theme nil "What Emacs theme do you use.")
(defalias 'yes-or-no-p 'y-or-n-p)
(defconst *use-exwm* t)
(defconst *use-evil* t)
(eval-when-compile
(require 'init-pacmanage)
(require 'init-benchmark)
(require 'init-basic)
(require 'config nil t)
(if *use-exwm*
(require 'init-exwm))
(require 'init-edit)
(require 'init-math)
(require 'init-undo)
(require 'init-fold)
(require 'init-lang)
(require 'init-ui)
(require 'init-utils)
(require 'init-shell)
(require 'init-project)
(require 'init-company)
(require 'init-cc)
(require 'init-java)
(require 'init-elisp)
(require 'init-org)
(require 'init-misc)
(require 'init-media)
(require 'init-keybindings)
(if *use-evil*
(require 'init-evil)))
(provide 'init)
;; Local Variables:
;; coding: utf-8
;; no-byte-compile: t
;; End:
;;; init.el ends here