-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathearly-init.el
80 lines (62 loc) · 2.3 KB
/
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
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
;;; early-init.el --- earliest birds -*- lexical-binding: t -*-
(setq load-prefer-newer t)
(let ((dir (file-name-directory (or load-file-name buffer-file-name))))
(add-to-list 'load-path (expand-file-name "lib/compat" dir))
(add-to-list 'load-path (expand-file-name "lib/packed" dir)))
(setq package-enable-at-startup nil)
(setq gc-cons-threshold most-positive-fixnum
gc-cons-percentage 0.5
file-name-handler-alist nil
site-run-file nil
default-frame-alist
'((vertical-scroll-bars . nil)
(menu-bar-lines . 0)
(tool-bar-lines . 0)
(ns-transparent-titlebar . t))
mode-line-format nil
byte-compile-warnings nil
native-comp-async-report-warnings-errors nil
warning-suppress-log-types '((comp) (bytecomp))
display-time-default-load-average nil
inhibit-startup-screen t
inhibit-startup-message t
inhibit-startup-echo-area-message user-login-name
inhibit-default-init t
initial-major-mode 'fundamental-mode
initial-scratch-message nil
frame-inhibit-implied-resize t
frame-resize-pixelwise t
load-prefer-newer nil
auto-mode-case-fold nil
ring-bell-function 'ignore
visible-bell t
bidi-display-reordering 'left-to-right
bidi-paragraph-direction 'left-to-right
cursor-in-non-selected-windows nil
highlight-nonselected-windows nil
fast-but-imprecise-scrolling t
ffap-machine-p-known 'reject
redisplay-skip-fontification-on-input t
idle-update-delay 1.0
)
(add-to-list 'initial-frame-alist '(fullscreen . maximized))
(custom-set-variables '(x-select-enable-clipboard t))
;; Automatically reread from disk if the underlying file changes
(setq auto-revert-interval 3
auto-revert-check-vc-info t)
(global-auto-revert-mode)
(savehist-mode)
(setq use-package-enable-imenu-support t
use-package-verbose (not (bound-and-true-p byte-compile-current-file))
use-package-expand-minimally t
use-package-always-defer t
use-package-compute-statistics nil)
(with-eval-after-load 'package
(add-to-list 'package-archives
(cons "melpa" "https://melpa.org/packages/")
t))
;; Local Variables:
;; no-byte-compile: t
;; indent-tabs-mode: nil
;; End:
;;; early-init.el ends here