-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinit.el
59 lines (50 loc) · 1.54 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
;;; 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:
;;; Early birds
;;----------------------------------------------------------------------------
;; Bootstrap config
;;----------------------------------------------------------------------------
(load-file (expand-file-name "early-init.el" user-emacs-directory))
;; Keep emacs custom in separate file
(setq custom-file (expand-file-name "custom.el" user-emacs-directory))
(when (file-exists-p custom-file)
(load custom-file))
(require 'init-configs)
(require 'init-packages)
(require 'init-basic)
(require 'init-exec-path)
(require 'init-theme)
(require 'init-defun)
(require 'init-minibuffer)
;;----------------------------------------------------------------------------
;; Load configs for specific features and modes
;;----------------------------------------------------------------------------
(require 'init-completion)
(require 'init-lsp)
(require 'init-org)
(require 'init-projectile)
(require 'init-editing)
(require 'init-tags)
(require 'init-pair)
(require 'init-utils)
(require 'init-python)
(require 'init-cc)
(require 'init-golang)
(require 'init-haskell)
(require 'init-rust)
(require 'init-javascript)
(require 'init-markdown)
(require 'init-plot)
(require 'init-git)
(require 'init-admixture)
(require 'init-runner)
(require 'init-evil)
(require 'init-hydra)
;; Local Variables:
;; no-byte-compile: t
;; indent-tabs-mode: nil
;; End:
;;; init.el ends here