early-init.el (1179B)
1 ;;; early-init.el --- earliest birds -*- lexical-binding: t; -*- 2 3 (setq user-emacs-directory (expand-file-name "~/.cache/emacs/")) 4 5 (when (featurep 'native-compile) 6 (setq native-comp-async-report-warnings-errors nil 7 native-comp-deferred-compilation t)) 8 9 (scroll-bar-mode -1) 10 (tool-bar-mode -1) 11 (tooltip-mode -1) 12 (set-fringe-mode 10) 13 (menu-bar-mode -1) 14 (blink-cursor-mode -1) 15 16 (setq-default mode-line-format nil 17 inhibit-startup-screen t 18 inhibit-startup-buffer-menu t 19 cursor-in-non-selected-windows nil 20 show-help-function nil 21 help-window-select t 22 select-enable-clipboard t) 23 24 (setq gc-cons-threshold (* 50 1000 1000) 25 load-prefer-newer noninteractive 26 package-enable-at-startup nil 27 package-native-compile t 28 inhibit-splash-screen t 29 inhibit-startup-message t 30 initial-scratch-message "" 31 initial-major-mode 'fundamental-mode 32 ring-bell-function 'ignore 33 auto-save-default nil 34 make-backup-files nil 35 create-lockfiles nil 36 frame-resize-pixelwise t) 37 38 ;; Local Variables: 39 ;; no-byte-compile: t 40 ;; End: 41 ;;; early-init.el ends here