Change directory structure
This commit is contained in:
parent
8f5cba33ae
commit
cd825ea3e6
16 changed files with 0 additions and 0 deletions
30
config/emacs/early-init.el
Normal file
30
config/emacs/early-init.el
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
;; early-init.el --- -*- no-byte-compile: t -*-
|
||||
|
||||
(setq gc-cons-threshold 100000000)
|
||||
(setq read-process-output-max (* 1024 1024))
|
||||
|
||||
(setq byte-compile-warnings '(not obsolete))
|
||||
(setq warning-suppress-log-types '((comp) (bytecomp)))
|
||||
(setq native-comp-async-report-warnings-errors 'silent)
|
||||
(setq inhibit-startup-echo-area-message (user-login-name))
|
||||
|
||||
(customize-set-variable 'load-prefer-newer noninteractive)
|
||||
|
||||
(setq frame-inhibit-implied-resize t
|
||||
frame-resize-pixelwise t
|
||||
display-tinme-default-load-average nil)
|
||||
|
||||
(setq inhibit-startup-message t)
|
||||
(setq initial-scratch-message nil)
|
||||
|
||||
(push '(tool-bar-lines . 0) default-frame-alist)
|
||||
(push '(menu-bar-lines . 0) default-frame-alist)
|
||||
(push '(vertical-scroll-bars) default-frame-alist)
|
||||
(push '(mouse-color . "white") default-frame-alist)
|
||||
|
||||
(scroll-bar-mode -1)
|
||||
(menu-bar-mode -1)
|
||||
|
||||
(add-to-list 'default-frame-alist '(undecorated . t))
|
||||
|
||||
(customize-set-variable 'initial-major-mode 'emacs-lisp-mode)
|
||||
Loading…
Add table
Add a link
Reference in a new issue