diff options
author | Jesús <heckyel@hyperbola.info> | 2019-02-19 19:47:53 -0500 |
---|---|---|
committer | Jesús <heckyel@hyperbola.info> | 2019-02-19 19:47:53 -0500 |
commit | 6ff91eb157defb2a1d1d45fadaf8740656875171 (patch) | |
tree | 1e398722f8777732f23be6f03956a19889674c83 /modules | |
parent | 5b29e222f6d3251c0a1738a86555fb27f027bd14 (diff) | |
download | emacs-personal-6ff91eb157defb2a1d1d45fadaf8740656875171.tar.lz emacs-personal-6ff91eb157defb2a1d1d45fadaf8740656875171.tar.xz emacs-personal-6ff91eb157defb2a1d1d45fadaf8740656875171.zip |
update scss-mode
Diffstat (limited to 'modules')
-rw-r--r-- | modules/init-scss.el | 5 |
1 files changed, 4 insertions, 1 deletions
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) |