aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAshton Wiersdorf <ashton.wiersdorf@pobox.com>2023-01-03 22:09:38 -0700
committerAshton Wiersdorf <ashton.wiersdorf@pobox.com>2023-01-03 22:09:38 -0700
commit301d8d48702bd3cbbae23d6a74de407671bed0c9 (patch)
treec75bdfb5723c5e440c88902b1c6f8dfa7999618c
parent6d7a4110e59cddfbc40a9e7435dad74a66df2c0f (diff)
Add comments, make startup look better
-rw-r--r--early-init.el5
-rw-r--r--init.el37
2 files changed, 29 insertions, 13 deletions
diff --git a/early-init.el b/early-init.el
index 4e5c463..080e37d 100644
--- a/early-init.el
+++ b/early-init.el
@@ -42,9 +42,14 @@
(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
(setq default-frame-alist '((fullscreen . maximized)
(vertical-scroll-bars . nil)
(horizontal-scroll-bars . nil)
(ns-appearance . dark)
(ns-transparent-titlebar . t)
(alpha-background . 50)))
+
+(set-face-background 'default "#000000")
+(set-face-foreground 'default "#cccccc")
diff --git a/init.el b/init.el
index 7acfe34..d04f20d 100644
--- a/init.el
+++ b/init.el
@@ -22,7 +22,8 @@
;; Show the help buffer after startup
(add-hook 'after-init-hook 'help-quick)
-;; which-key: shows a popup of available keybindings
+;; which-key: shows a popup of available keybindings when typing a long key
+;; sequence (e.g. C-x ...)
(use-package which-key
:ensure t
:config
@@ -52,15 +53,14 @@
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Mode line information
-(setq line-number-mode t)
-(setq column-number-mode t)
+(setq line-number-mode t) ; Show current line in modeline
+(setq column-number-mode t) ; Show column as well
(setq x-underline-at-descent-line nil) ; Prettier underlines
-(setq frame-resize-pixelwise t)
-(setq switch-to-buffer-obey-display-actions t)
+(setq switch-to-buffer-obey-display-actions t) ; Make switching buffers more consistent
-(setq-default show-trailing-whitespace nil)
-(setq-default indicate-buffer-boundaries 'left)
+(setq-default show-trailing-whitespace nil) ; By default, don't underline trailing spaces
+(setq-default indicate-buffer-boundaries 'left) ; Show icons showing the size of the buffer in the margin
;; Enable horizontal scrolling
(setq mouse-wheel-tilt-scroll t)
@@ -72,13 +72,12 @@
;; (setq-default tab-width 4)
;; Misc. UI tweaks
-(blink-cursor-mode -1)
-(tool-bar-mode -1)
-(pixel-scroll-precision-mode)
-(global-hl-line-mode)
+(blink-cursor-mode -1) ; Steady cursor
+(pixel-scroll-precision-mode) ; Smooth scrolling
+(global-hl-line-mode) ; Highlight the current line
;; Display line numbers in programming mode
-(add-hook 'prog-mode-hook 'display-line-numbers-mode)
+(add-hook 'prog-mode-hook 'display-line-numbers-mode) ; If programming, show line numbers
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;
@@ -106,7 +105,6 @@
(load-theme 'modus-vivendi)
;; If you like light-mode themes instead, use this:
-
;(load-theme 'modus-operandi)
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
@@ -128,3 +126,16 @@
;;; Built-in customization framework
;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+
+(custom-set-variables
+ ;; custom-set-variables was added by Custom.
+ ;; If you edit it by hand, you could mess it up, so be careful.
+ ;; Your init file should contain only one such instance.
+ ;; If there is more than one, they won't work right.
+ '(package-selected-packages '(which-key)))
+(custom-set-faces
+ ;; custom-set-faces was added by Custom.
+ ;; If you edit it by hand, you could mess it up, so be careful.
+ ;; Your init file should contain only one such instance.
+ ;; If there is more than one, they won't work right.
+ )