aboutsummaryrefslogtreecommitdiff
path: root/home-manager/homeModules
diff options
context:
space:
mode:
authorspl3g <spleefer6@yandex.ru>2025-05-01 15:07:30 +0300
committerspl3g <spleefer6@yandex.ru>2025-05-01 15:16:52 +0300
commit3f81de8a3a998a7d4b1f9d4963cb36812a17bc41 (patch)
tree17c058d28d37555e1401e5f238c5c6d956b8b5b4 /home-manager/homeModules
parent7da94ff3fe3e6678cada89b0fccbd4a3294d1804 (diff)
feat(emacs): remove duplicate lines
Diffstat (limited to 'home-manager/homeModules')
-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