From 9016db229abf7d82cf70fd23bc50c989f32c3e93 Mon Sep 17 00:00:00 2001 From: Daniel Borchmann Date: Fri, 20 Dec 2019 20:31:15 +0100 Subject: [PATCH] Don't explicitly load abbreviations Since we are loading customizations during initializtion time now, we can let Emacs handle reading abbreviations itself. --- init.el | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/init.el b/init.el index 3efc90d..c24ba9f 100644 --- a/init.el +++ b/init.el @@ -89,12 +89,6 @@ (appt-activate +1) (savehist-mode 1) - ;; We explicitly load abbreviations here, because `abbrev-file-name’ may have - ;; been changed by customize. - - (with-demoted-errors "Cannot load abbreviations: %s" - (quietly-read-abbrev-file)) - (size-indication-mode 1) (display-battery-mode -1) @@ -486,7 +480,7 @@ :commands (winner-mode winner-undo winner-redo)) (use-package abbrev - :commands (quietly-read-abbrev-file) + :defer t :init (progn (setq-default abbrev-mode t) (setq save-abbrevs 'silently))