2024-12-02 23:56:19 -05:00
|
|
|
(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)
|
|
|
|
|
2024-12-03 20:56:01 -05:00
|
|
|
(menu-bar-mode -1)
|
2024-12-03 15:05:59 -05:00
|
|
|
(scroll-bar-mode -1)
|
2024-12-02 23:56:19 -05:00
|
|
|
(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)))
|