dotfiles/emacs.d/early-init.el

24 lines
687 B
EmacsLisp
Raw Permalink Normal View History

(setq original-gc-cons-threshold gc-cons-threshold)
(setq gc-cons-threshold 10000000)
(setq byte-compile-warnings '(not obsolete))
(setq warning-suppress-log-types '((comp) (bytecomp)))
(setq native-comp-async-report-warnings-errors 'silent)
(setq frame-inhibit-implied-resize t)
(setq inhibit-compacting-font-caches t)
(setq idle-update-delay 1.0)
(setq initial-scratch-message nil)
(setq inhibit-startup-screen t)
(menu-bar-mode -1)
2024-12-03 15:05:59 -05:00
(scroll-bar-mode -1)
(tool-bar-mode -1)
(set-fringe-mode 10)
;; TODO: figure out what these width/height numbers are exactly. they don't seem to be characters?
(setq default-frame-alist '((width . 165)
2024-12-03 11:16:34 -05:00
(height . 59)))