-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathearly-init.el
More file actions
28 lines (20 loc) · 804 Bytes
/
early-init.el
File metadata and controls
28 lines (20 loc) · 804 Bytes
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
(setq gc-cons-threshold (* 200 1000 1000)
read-process-output-max (* 8 1024 1024))
(setq native-comp-deferred-compilation t
native-comp-speed 3)
(setq frame-resize-pixelwise t)
(setq package-enable-at-startup nil)
(add-to-list 'default-frame-alist '(fullscreen . maximized))
(when (and (fboundp 'startup-redirect-eln-cache)
(fboundp 'native-comp-available-p)
(native-comp-available-p))
(startup-redirect-eln-cache
(convert-standard-filename
(expand-file-name "var/eln-cache/" user-emacs-directory))))
;; (setq inhibit-startup-message 't)
;; (setq initial-scratch-message 'nil)
;; (setq initial-major-mode 'fundamental-mode)
;; (setq jit-lock-stealth-time nil)
;; (setq jit-lock-defer-time nil)
;; (setq jit-lock-stealth-load 200)
(provide 'early-init)