diff options
-rw-r--r-- | early-init.el | 8 |
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 |