aboutsummaryrefslogtreecommitdiff
path: root/modules/system-utils.el
diff options
context:
space:
mode:
authorCraig Jennings <c@cjennings.net>2026-01-09 23:36:35 -0600
committerCraig Jennings <c@cjennings.net>2026-01-09 23:36:35 -0600
commit84f146cf494469058f3a797fcd3257cb591704d7 (patch)
tree85822dc44125f8592d60565ffa392b716da0f877 /modules/system-utils.el
parent0b37f4ff9417aeb86c5f7516f1aaaf544722677b (diff)
downloaddotemacs-84f146cf494469058f3a797fcd3257cb591704d7.tar.gz
dotemacs-84f146cf494469058f3a797fcd3257cb591704d7.zip
feat(dirvish): add project shortcuts and remove scratch font override
Added dirvish quick-access shortcuts for homelab, kit, and nextjob projects. Removed 16pt font size override from scratch buffer startup hook.
Diffstat (limited to 'modules/system-utils.el')
-rw-r--r--modules/system-utils.el3
1 files changed, 1 insertions, 2 deletions
diff --git a/modules/system-utils.el b/modules/system-utils.el
index f5af18de5..1bd7f015c 100644
--- a/modules/system-utils.el
+++ b/modules/system-utils.el
@@ -194,12 +194,11 @@ Logs output and exit code to buffer *external-open.log*."
;; Set scratch buffer to org-mode
(setopt initial-major-mode 'org-mode)
-;; Move cursor to end of scratch buffer on startup and set font size to 16pt
+;; Move cursor to end of scratch buffer on startup
(add-hook 'emacs-startup-hook
(lambda ()
(when (get-buffer "*scratch*")
(with-current-buffer "*scratch*"
- (buffer-face-set :height 160) ; 160 = 16pt (height is in 1/10pt units)
(goto-char (point-max))))))
;;; --------------------------------- Dictionary --------------------------------