mirror of
http://github.com/JaeUs3792/dotfiles
synced 2025-12-13 23:51:34 +09:00
35 lines
1.1 KiB
EmacsLisp
35 lines
1.1 KiB
EmacsLisp
;;; early-init.el -*- lexical-binding: t -*-
|
|
;; do not garbage collection during startup
|
|
(setq gc-cons-threshold most-positive-fixnum)
|
|
|
|
;;; Native compilation settings
|
|
(when (featurep 'native-compile)
|
|
;; Silence compiler warnings as they can be pretty disruptive
|
|
(setq native-comp-async-report-warnings-errors nil)
|
|
(setq native-comp-deferred-compilation nil))
|
|
|
|
|
|
(setq package-enable-at-startup nil)
|
|
;; built-in use-package, set before loading
|
|
(setq use-package-enable-imenu-support t)
|
|
|
|
;;
|
|
(setq load-prefer-newer noninteractive)
|
|
(setq frame-inhibit-implied-resize t)
|
|
|
|
(push '(menu-bar-lines . 0) default-frame-alist)
|
|
(push '(tool-bar-lines . 0) default-frame-alist)
|
|
(push '(vertical-scroll-bars) default-frame-alist)
|
|
(when (featurep 'ns)
|
|
(push '(ns-transparent-titlebar . t) default-frame-alist))
|
|
(setq-default mode-line-format nil)
|
|
|
|
;;(setq inhibit-startup-message nil) ; TODO check.
|
|
|
|
;; initial load with blue theme
|
|
;(load-theme 'deeper-blue)
|
|
|
|
(setq package-enable-at-startup nil)
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
;; early-init.el ends here
|