summary refs log tree commit diff stats
path: root/early-init.el
diff options
context:
space:
mode:
authorCase Duckworth2021-01-19 23:40:14 -0600
committerCase Duckworth2021-01-19 23:40:14 -0600
commit093e18808c3a65647aa015f71b4bb47cab98c64e (patch)
treef53d72d43c0c23188bcc1bf866a62b240243fa5b /early-init.el
parentHide cursor in inactive windows (diff)
downloademacs-093e18808c3a65647aa015f71b4bb47cab98c64e.tar.gz
emacs-093e18808c3a65647aa015f71b4bb47cab98c64e.zip
Start over ... again
Diffstat (limited to 'early-init.el')
-rw-r--r--early-init.el46
1 files changed, 45 insertions, 1 deletions
diff --git a/early-init.el b/early-init.el index fc19618..b74f5e4 100644 --- a/early-init.el +++ b/early-init.el
@@ -1,9 +1,53 @@
1;; early-init.el -*- no-byte-compile: t; -*- 1;; early-init.el -*- no-byte-compile: t; -*-
2;; This file is automatically tangled from config.org.
3;; Hand edits will be overwritten!
2 4
3;; I use `straight.el' instead of `package.el'. 5;; Disable loading of =package.el=
6
7;; I use =straight.el= instead.
8
9
10;; [[file:~/.config/emacs/config.org::*Disable loading of =package.el=][Disable loading of =package.el=:1]]
4(setq package-enable-at-startup nil) 11(setq package-enable-at-startup nil)
12;; Disable loading of =package.el=:1 ends here
5 13
6;; Don't resize the frame when loading fonts 14;; Don't resize the frame when loading fonts
15
16
17;; [[file:~/.config/emacs/config.org::*Don't resize the frame when loading fonts][Don't resize the frame when loading fonts:1]]
7(setq frame-inhibit-implied-resize t) 18(setq frame-inhibit-implied-resize t)
19;; Don't resize the frame when loading fonts:1 ends here
20
8;; Resize frame by pixels 21;; Resize frame by pixels
22
23
24;; [[file:~/.config/emacs/config.org::*Resize frame by pixels][Resize frame by pixels:1]]
9(setq frame-resize-pixelwise t) 25(setq frame-resize-pixelwise t)
26;; Resize frame by pixels:1 ends here
27
28;; Shoe-horned from elsewhere in =config.org=
29
30;; A fundamental tension of literal programming is logical versus
31;; programmatic ordering. I understand that's a problem it's meant to
32;; solve but hey, maybe I'm not quite there yet. I feel that having this
33;; weird shoe-horning of other bits of my config here, in a backwater
34;; heading in an appendix, isn't quite the future I wanted. But it's
35;; what I have for now.
36
37
38;; [[file:~/.config/emacs/config.org::*Shoe-horned from elsewhere in =config.org=][Shoe-horned from elsewhere in =config.org=:1]]
39(add-to-list 'default-frame-alist
40 '(tool-bar-lines . 0))
41
42(tool-bar-mode -1)
43(add-to-list 'default-frame-alist
44 '(menu-bar-lines . 0))
45
46(menu-bar-mode -1)
47(add-to-list 'default-frame-alist
48 '(vertical-scroll-bars . nil)
49 '(horizontal-scroll-bars . nil))
50
51(scroll-bar-mode -1)
52(horizontal-scroll-bar-mode -1)
53;; Shoe-horned from elsewhere in =config.org=:1 ends here