-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathearly-init.el
28 lines (20 loc) · 880 Bytes
/
early-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
;;----------------------------------------------------------------------
;;; native complie since v28
(setq package-native-compile t)
;;----------------------------------------------------------------------
;;; garbage collector
;; suppress gc temporarily stolen from doom-emacs
(setq gc-cons-threshold most-positive-fixnum) ; 2^61 bytes
(setq gc-cons-percentage 0.6)
;;----------------------------------------------------------------------
;;; window
(add-to-list 'default-frame-alist '(fullscreen . maximized))
(tool-bar-mode 0)
(scroll-bar-mode 0)
;;----------------------------------------------------------------------
;;; themes
(load-theme 'wombat t)
;;----------------------------------------------------------------------
;;; fonts
;; (add-to-list 'default-frame-alist '(font . "Inconsolata 12"))
(add-to-list 'default-frame-alist '(font . "Source Code Pro-12"))