This repository has been archived on 2024-03-23. You can view files and clone it, but cannot push or open issues or pull requests.
dianciemacs/early-init.el
2022-11-16 21:38:19 +00:00

15 lines
516 B
EmacsLisp

;;; early-init.el --- Early changes to Emacs -*- lexical-binding: t; -*-
;;; Commentary:
;;
;; This file contains elisp code to be run as early as Emacs will allow - this
;; means before the frame is actually loaded, which is why this file isn't
;; used as a replacement for the init.el file - time taken for the window to load
;; is more painful than time taken for the editor to load.
;;
;;; Code:
;; Disable the menubar. Done in this file otherwise done too late.
(menu-bar-mode -1)
;;; early-init.el ends here