From 6ff91eb157defb2a1d1d45fadaf8740656875171 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jes=C3=BAs?= Date: Tue, 19 Feb 2019 19:47:53 -0500 Subject: [PATCH] update scss-mode --- modules/init-scss.el | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/modules/init-scss.el b/modules/init-scss.el index 76cb770..328eea6 100644 --- a/modules/init-scss.el +++ b/modules/init-scss.el @@ -7,7 +7,10 @@ ;; Scss Mode ;;---------------------------------------------------------------------------- (use-package scss-mode - :mode ("\\.scss\\'" . scss-mode)) + :defer t + :mode ("\\.scss\\'" . scss-mode) + :config + (setq scss-compile-at-save 'nil)) (provide 'init-scss)