From fa76a195e26aa5297d12e7f64127a914cb8c1502 Mon Sep 17 00:00:00 2001 From: Ashton Wiersdorf Date: Wed, 4 Jan 2023 17:19:05 -0700 Subject: Move more stuff from early-init.el → init.el MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Closes #4 --- init.el | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) (limited to 'init.el') diff --git a/init.el b/init.el index ad026dc..e6aba50 100644 --- a/init.el +++ b/init.el @@ -12,6 +12,7 @@ ;;; Contents: ;;; +;;; - Basic settings ;;; - Discovery aids ;;; - Minibuffer/completion settings ;;; - Interface enhancements/defaults @@ -20,6 +21,25 @@ ;;; - Optional mixins ;;; - Built-in customization framework +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;; +;;; Basic settings +;;; +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; + +;; If you want to turn off the welcome screen, uncomment this +;(setq inhibit-splash-screen t) + +(setq initial-major-mode 'fundamental-mode) ; default mode for the *scratch* buffer +(setq display-time-default-load-average nil) ; this information is useless for most + +;; Automatically reread from disk if the underlying file changes +(setq auto-revert-interval 3) +(setq auto-revert-check-vc-info t) +(global-auto-revert-mode) + +;; Save history of minibuffer +(savehist-mode) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;; -- cgit v1.2.3