dotfiles/emacs.d/early-init.el
Gered 22af19b907 initial emacs.d config
probably a bunch of dumb things in here
2024-12-02 23:56:33 -05:00

24 lines
664 B
EmacsLisp

(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)
(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)
(height . 59)))