summary refs log tree commit diff stats
path: root/early-init.el
diff options
context:
space:
mode:
Diffstat (limited to 'early-init.el')
-rw-r--r--early-init.el15
1 files changed, 9 insertions, 6 deletions
diff --git a/early-init.el b/early-init.el index 3dd74e0..d59fe64 100644 --- a/early-init.el +++ b/early-init.el
@@ -5,10 +5,11 @@
5;; Debugging shit 5;; Debugging shit
6(setq debug-on-error t 6(setq debug-on-error t
7 use-package-verbose t) 7 use-package-verbose t)
8;; (setq debug-on-message "Selection owner couldn’t convert: TIMESTAMP")
8 9
9;; Frames 10;; Frames
10(setq default-frame-alist '((tool-bar-lines . 0) 11(setq default-frame-alist '((tool-bar-lines . 0)
11 ;; (menu-bar-lines . 0) 12 (menu-bar-lines . 0)
12 (vertical-scroll-bars . nil) 13 (vertical-scroll-bars . nil)
13 (horizontal-scroll-bars . nil)) 14 (horizontal-scroll-bars . nil))
14 frame-inhibit-implied-resize t 15 frame-inhibit-implied-resize t
@@ -21,11 +22,13 @@
21;; Packages 22;; Packages
22(require 'package) 23(require 'package)
23(add-to-list 'package-archives 24(add-to-list 'package-archives
24 '("melpa" . "https://melpa.org/packages/") 25 '("melpa" . "https://melpa.org/packages/") :append)
25 :append) 26(add-to-list 'package-archives
26(setq package-priorities '(("melpa" . 2) 27 '("melpa-stable" . "https://stable.melpa.org/packages/") :append)
27 ("nongnu" . 1) 28(setq package-priorities '(("melpa" . 3)
28 ("gnu" . 0))) 29 ("nongnu" . 2)
30 ("gnu" . 1)
31 ("melpa-stable" . 0)))
29(package-initialize) 32(package-initialize)
30(unless package-archive-contents 33(unless package-archive-contents
31 (package-refresh-contents)) 34 (package-refresh-contents))