diff options
-rw-r--r-- | early-init.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/early-init.el b/early-init.el index 36bacbe..dd09f16 100644 --- a/early-init.el +++ b/early-init.el | |||
@@ -53,11 +53,11 @@ | |||
53 | (unless (daemonp) | 53 | (unless (daemonp) |
54 | (defvar doom--initial-file-name-handler-alist file-name-handler-alist) | 54 | (defvar doom--initial-file-name-handler-alist file-name-handler-alist) |
55 | (setq file-name-handler-alist nil) | 55 | (setq file-name-handler-alist nil) |
56 | (defun doom-reset-file-handler-alist-h () | 56 | (defun hook--reset-file-handler-alist () |
57 | (dolist (handler file-name-handler-alist) | 57 | (dolist (handler file-name-handler-alist) |
58 | (add-to-list 'doom--initial-file-name-handler-alist handler)) | 58 | (add-to-list 'doom--initial-file-name-handler-alist handler)) |
59 | (setq file-name-handler-alist doom--initial-file-name-handler-alist)) | 59 | (setq file-name-handler-alist doom--initial-file-name-handler-alist)) |
60 | (add-hook 'emacs-startup-hook #'doom-reset-file-handler-alist-h)) | 60 | (add-hook 'emacs-startup-hook #'hook--reset-file-handler-alist)) |
61 | 61 | ||
62 | ;; Where are we? | 62 | ;; Where are we? |
63 | (defconst acdw/system (pcase system-type | 63 | (defconst acdw/system (pcase system-type |
@@ -112,7 +112,7 @@ | |||
112 | :family "DejaVu Sans" | 112 | :family "DejaVu Sans" |
113 | :height 1.0)) | 113 | :height 1.0)) |
114 | (:work (set-face-attribute 'default nil | 114 | (:work (set-face-attribute 'default nil |
115 | :familiy "Consolas" | 115 | :family "Consolas" |
116 | :height 110) | 116 | :height 110) |
117 | (set-face-attribute 'fixed-pitch nil | 117 | (set-face-attribute 'fixed-pitch nil |
118 | :family "Consolas" | 118 | :family "Consolas" |