mirror of
https://github.com/callumio/nixfiles.git
synced 2026-08-06 20:49:17 +01:00
11 lines
360 B
EmacsLisp
11 lines
360 B
EmacsLisp
;; Defer GC during startup
|
|
(setq gc-cons-threshold most-positive-fixnum)
|
|
(add-hook 'emacs-startup-hook
|
|
(lambda () (setq gc-cons-threshold (* 16 1024 1024))))
|
|
|
|
;; Disable before frame init
|
|
(setq default-frame-alist
|
|
'((tool-bar-lines . 0)
|
|
(menu-bar-lines . 0)
|
|
(vertical-scroll-bars . nil)
|
|
(horizontal-scroll-bars . nil)))
|