blob: d84199664b515bf3df8dffc2428e971f5af106cf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
;; These settings ensure Emacs does not flicker during early setup.
(menu-bar-mode -1)
(tool-bar-mode -1)
(scroll-bar-mode -1)
(menu-bar-bottom-and-right-window-divider)
(setq gc-cons-threshold 100000000)
(provide 'early-init)
;;; early-init.el ends here
;; Local Variables:
;; mode: emacs-lisp
;; End:
|