aboutsummaryrefslogtreecommitdiff
path: root/home-manager
diff options
context:
space:
mode:
Diffstat (limited to 'home-manager')
-rw-r--r--home-manager/homeModules/emacs/early-init.el33
1 files changed, 1 insertions, 32 deletions
diff --git a/home-manager/homeModules/emacs/early-init.el b/home-manager/homeModules/emacs/early-init.el
index 3a7d48a..c6334f5 100644
--- a/home-manager/homeModules/emacs/early-init.el
+++ b/home-manager/homeModules/emacs/early-init.el
@@ -30,38 +30,6 @@
;; icon fonts on Windows. This will increase memory usage.
(setq inhibit-compacting-font-caches t)
-
-;; Disable warnings from the legacy advice API. They aren't useful.
-(setq ad-redefinition-action 'accept)
-
-(setq warning-suppress-types '((lexical-binding)))
-
-;; Don't ping things that look like domain names.
-(setq ffap-machine-p-known 'reject)
-
-;; By default, Emacs "updates" its ui more often than it needs to
-(setq idle-update-delay 1.0)
-
-;; Font compacting can be very resource-intensive, especially when rendering
-;; icon fonts on Windows. This will increase memory usage.
-(setq inhibit-compacting-font-caches t)
-
-
-;; Disable warnings from the legacy advice API. They aren't useful.
-(setq ad-redefinition-action 'accept)
-
-(setq warning-suppress-types '((lexical-binding)))
-
-;; Don't ping things that look like domain names.
-(setq ffap-machine-p-known 'reject)
-
-;; By default, Emacs "updates" its ui more often than it needs to
-(setq idle-update-delay 1.0)
-
-;; Font compacting can be very resource-intensive, especially when rendering
-;; icon fonts on Windows. This will increase memory usage.
-(setq inhibit-compacting-font-caches t)
-
(unless (daemonp)
(unless noninteractive
(progn
@@ -198,5 +166,6 @@
(set-face-attribute 'variable-pitch nil :family proportionately-spaced-font :height 1.0)
(set-face-attribute 'italic nil :underline nil))
+
(provide 'early-init)
;;; early-init.el ends here