summary refs log tree commit diff stats
path: root/early-init.el
diff options
context:
space:
mode:
authorCase Duckworth2021-03-30 17:23:10 -0500
committerCase Duckworth2021-03-30 17:23:10 -0500
commitbac84d15424087bb8c26edf1f735bedd83b8fb0a (patch)
tree3f590237e86cbc838ed9427db6c14aa2c1a21dc4 /early-init.el
parentTweak garbage collection (diff)
downloademacs-bac84d15424087bb8c26edf1f735bedd83b8fb0a.tar.gz
emacs-bac84d15424087bb8c26edf1f735bedd83b8fb0a.zip
Whitespace
Diffstat (limited to 'early-init.el')
-rw-r--r--early-init.el18
1 files changed, 9 insertions, 9 deletions
diff --git a/early-init.el b/early-init.el index ad1d856..8984a17 100644 --- a/early-init.el +++ b/early-init.el
@@ -46,22 +46,22 @@
46 46
47;;; Frame settings 47;;; Frame settings
48 48
49(setq default-frame-alist ; Remove most UI 49(setq default-frame-alist ; Remove most UI
50 `((tool-bar-lines . 0) ; No tool bar 50 `((tool-bar-lines . 0) ; No tool bar
51 (menu-bar-lines . 0) ; No menu bar 51 (menu-bar-lines . 0) ; No menu bar
52 (vertical-scroll-bars) ; No scroll bars 52 (vertical-scroll-bars) ; No scroll bars
53 (horizontal-scroll-bars) ; ... at all 53 (horizontal-scroll-bars) ; ... at all
54 (width . 84) ; A /little/ wider than 54 (width . 84) ; A /little/ wider than
55 ; `fill-column' (set later) 55 ; `fill-column' (set later)
56 (height . 30) 56 (height . 30)
57 (left-fringe . 8) ; Width of fringes 57 (left-fringe . 8) ; Width of fringes
58 (right-fringe . 8) ; (8 is default) 58 (right-fringe . 8) ; (8 is default)
59 (font . ,(pcase acdw/system 59 (font . ,(pcase acdw/system
60 (:home "DejaVu Sans Mono 10") 60 (:home "DejaVu Sans Mono 10")
61 (:work "Consolas 10") 61 (:work "Consolas 10")
62 (:other "monospace 10")))) 62 (:other "monospace 10"))))
63 frame-inhibit-implied-resize t ; Don't resize randomly 63 frame-inhibit-implied-resize t ; Don't resize randomly
64 frame-resize-pixelwise t ; Resize by pixels, not chars 64 frame-resize-pixelwise t ; Resize by pixels, not chars
65 ) 65 )
66 66
67(defun hook--disable-ui-modes () 67(defun hook--disable-ui-modes ()