From c7ddcefba99b55bc90cab3430079f89a95085097 Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Mon, 18 Nov 2019 14:18:18 -0500 Subject: [PATCH] core: use-package!->after! where former is unnecessary --- core/core-ui.el | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/core/core-ui.el b/core/core-ui.el index 620feb24b..4ac1f96ff 100644 --- a/core/core-ui.el +++ b/core/core-ui.el @@ -366,9 +366,7 @@ treat Emacs as a non-application window." (setq ansi-color-for-comint-mode t) -(use-package! compile - :defer t - :config +(after! compile (setq compilation-always-kill t ; kill compilation process before starting another compilation-ask-about-save nil ; save all buffers on `compile' compilation-scroll-output 'first-error) @@ -376,9 +374,7 @@ treat Emacs as a non-application window." (add-hook 'compilation-filter-hook #'doom-apply-ansi-color-to-compilation-buffer-h)) -(use-package! ediff - :defer t - :config +(after! ediff (setq ediff-diff-options "-w" ; turn off whitespace checking ediff-split-window-function #'split-window-horizontally ediff-window-setup-function #'ediff-setup-windows-plain)