aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAshton Wiersdorf <ashton.wiersdorf@pobox.com>2023-01-04 17:19:05 -0700
committerAshton Wiersdorf <ashton.wiersdorf@pobox.com>2023-01-04 17:26:48 -0700
commitfa76a195e26aa5297d12e7f64127a914cb8c1502 (patch)
tree1547867c02cf39c4cc5646e59cb0bc666e92a6ce
parent063980aaa5f4e80f1b90549b10bcefdba249b3b9 (diff)
Move more stuff from early-init.el → init.el
Closes #4
-rw-r--r--early-init.el14
-rw-r--r--init.el20
2 files changed, 22 insertions, 12 deletions
diff --git a/early-init.el b/early-init.el
index 2c4ca00..457ac15 100644
--- a/early-init.el
+++ b/early-init.el
@@ -16,26 +16,16 @@
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Startup speed, annoyance sppression
-(setq gc-cons-threshold 100000000)
+(setq gc-cons-threshold 10000000)
(setq byte-compile-warnings '(not obsolete))
(setq warning-suppress-log-types '((comp) (bytecomp)))
-(setq initial-major-mode 'fundamental-mode)
-(setq inhibit-startup-screen t)
-(setq display-time-default-load-average nil)
-
-;; 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)
-
-(savehist-mode)
;; Silence stupid startup message
(setq inhibit-startup-echo-area-message (user-login-name))
;; Default frame configuration: full screen, good-looking title bar on macOS
(setq frame-resize-pixelwise t)
-(tool-bar-mode -1) ; No gross icons
+(tool-bar-mode -1) ; All these tools are in the menu-bar anyway
(setq default-frame-alist '((fullscreen . maximized)
(vertical-scroll-bars . nil)
(horizontal-scroll-bars . nil)
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)
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;