-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathinit.el
89 lines (76 loc) · 2.39 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
;; init.el -- emacs bootstrap file. -*- lexical-binding: t no-byte-compile: t -*-
;;
;; Copyright (C) 2017-2022 [email protected]
;;
;; Author: Kevin Leung <[email protected]>
;; URL: https://github.com/lkzz/emacs.d
;;
;; This file is not part of GNU Emacs.
;;
;;; License: GPLv3
;;
;;; Commentary:
;;
;;; Code:
(when (version< emacs-version "28.1")
(error "Your Emacs is too old -- this config requires 28.1 or higher"))
;; Speed up startup
(setq auto-mode-case-fold nil)
(setq site-run-file nil)
;; Optimize loading performance
(unless (or (daemonp) noninteractive init-file-debug)
(let ((old-file-name-handler-alist file-name-handler-alist))
(setq file-name-handler-alist nil)
(add-hook 'emacs-startup-hook
(lambda ()
"Recover file name handlers."
(setq file-name-handler-alist
(delete-dups (append file-name-handler-alist old-file-name-handler-alist)))))))
;; Optimize emacs garbage collect.
(setq gc-cons-threshold most-positive-fixnum)
;; Hook run after loading init files
(add-hook 'emacs-startup-hook (lambda () (setq gc-cons-threshold 800000)))
;; Suppress flashing at startup
(setq-default inhibit-message t
inhibit-redisplay t)
(add-hook 'window-setup-hook (lambda ()
(setq-default inhibit-message nil
inhibit-redisplay nil)
(redisplay)))
;; Load core config of emacs
(load (concat user-emacs-directory "core/core") nil 'nomessage)
(my/initialize-core)
;; Be quiet at startup; don't load or display anything unnecessary
(advice-add #'display-startup-echo-area-message :override #'ignore)
;; Personal package config
(require 'init-evil)
(require 'init-ui)
(require 'init-dashboard)
(require 'init-highlight)
(require 'init-minibuffer)
;; Misc packages
;; (require 'init-ivy)
(require 'init-misc)
(require 'init-edit)
(require 'init-projectile)
;; Programming releated packages
(require 'init-prog)
(require 'init-format)
(require 'init-markdown)
(require 'init-org)
(require 'init-golang)
(require 'init-python)
(require 'init-rust)
(require 'init-cxx)
(require 'init-completion)
(require 'init-lsp)
;; Tools
(require 'init-vc)
(require 'init-buffer)
(require 'init-flycheck)
(require 'init-shell)
(require 'init-dired)
(require 'init-filetree)
(require 'init-window)
(require 'init-keybindings.el)
;;; init.el ends here