-
Notifications
You must be signed in to change notification settings - Fork 0
/
init.el
72 lines (53 loc) · 1.61 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
60
61
62
63
64
65
66
67
68
69
70
71
72
;;; 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
(add-to-list 'load-path (expand-file-name "lisp" user-emacs-directory))
;; Garbage collection
(setq gc-cons-threshold (* 128 1024 1024))
;; Bootstrap config
(require 'server)
(unless (server-running-p)
(server-start))
(setq custom-file (locate-user-emacs-file "custom.el"))
(require 'init-utils)
(require 'init-site-lisp) ;; Must come before elpa, as it may provide package.el
;; Calls (package-initialize)
(require 'init-elpa) ;; Machinery for installing required packages
(require 'init-exec-path) ;; Set up $PATH
;; specific packages
;; appearance
(require 'init-themes)
(require 'init-dashboard)
(require 'init-nerd-icons)
(require 'init-good-scroll)
;; project management
(require 'init-projectile)
;; programming
(require 'init-rainbow)
(require 'init-company)
(require 'init-paredit)
;; version control
(require 'init-magit)
;; language support
(require 'init-c)
(require 'init-racket)
(require 'init-org)
(require 'init-markdown)
(require 'init-yaml)
;; enhance
(require 'init-counsel)
(require 'init-delight)
;; Allow users to provide an optional "init-preload-local.el"
(require 'init-preload-local nil t)
(require 'init-locales)
;; Allow users to provide an optional "init-local" containing personal settings
(require 'init-local nil t)
(provide 'init)
;; Local Variables:
;; coding: utf-8
;; no-byte-compile: t
;; End:
;;; init.el ends here