about summary refs log tree commit diff stats
path: root/early-init.el
diff options
context:
space:
mode:
authorCase Duckworth2021-10-05 20:05:22 -0500
committerCase Duckworth2021-10-05 20:05:22 -0500
commita96f8301a567568e9122d8a600fb783b72ff5ed6 (patch)
treef04439bbd4790e40ef1bccdb06c2af94988d6380 /early-init.el
parentLisp stuff (diff)
downloademacs-a96f8301a567568e9122d8a600fb783b72ff5ed6.tar.gz
emacs-a96f8301a567568e9122d8a600fb783b72ff5ed6.zip
Change initial frame setup
Diffstat (limited to 'early-init.el')
-rw-r--r--early-init.el8
1 files changed, 4 insertions, 4 deletions
diff --git a/early-init.el b/early-init.el index 2eaa8d8..86f8bb2 100644 --- a/early-init.el +++ b/early-init.el
@@ -26,7 +26,8 @@
26(require 'acdw-frame) 26(require 'acdw-frame)
27 27
28;;; Frame settings 28;;; Frame settings
29(setq default-frame-alist 29(setq initial-frame-alist '(fullscreen . maximized)
30 default-frame-alist
30 `((tool-bar-lines . 0) 31 `((tool-bar-lines . 0)
31 (menu-bar-lines . 0) 32 (menu-bar-lines . 0)
32 (vertical-scroll-bars . nil) 33 (vertical-scroll-bars . nil)
@@ -63,15 +64,14 @@ say, `tool-bar-mode' once to toggle the tool bar back on."
63 (defun after-make-frame@setup (&rest args) 64 (defun after-make-frame@setup (&rest args)
64 (ignore args) 65 (ignore args)
65 (let ((fixed-pitch-faces 66 (let ((fixed-pitch-faces
66 '((:font "Fantasque Sans Mono" :height 110) 67 '((:font "Fantasque Sans Mono" :height 115)
67 (:font "Go Mono" :height 110) 68 (:font "Go Mono" :height 110)
68 (:font "DejaVu Sans Mono" :height 110) 69 (:font "DejaVu Sans Mono" :height 110)
69 (:font "monospace" :height 100))) 70 (:font "monospace" :height 100)))
70 (variable-pitch-faces 71 (variable-pitch-faces
71 '((:font "Inter" :height 120) 72 '((:font "Inter" :height 120)
72 (:font "Go" :height 120) 73 (:font "Go" :height 120)
73 (:font "sans-serif" 74 (:font "sans-serif" :height 100))))
74 :height 100))))
75 (acdw/set-first-face-attribute 'default 75 (acdw/set-first-face-attribute 'default
76 fixed-pitch-faces) 76 fixed-pitch-faces)
77 (acdw/set-first-face-attribute 'fixed-pitch 77 (acdw/set-first-face-attribute 'fixed-pitch