init-scss.el 450 B

123456789101112131415161718
  1. ;;; init-scss.el --- .Emacs Configuration -*- lexical-binding: t -*-
  2. ;;; Commentary:
  3. ;;
  4. ;;; Code:
  5. ;;----------------------------------------------------------------------------
  6. ;; Scss Mode
  7. ;;----------------------------------------------------------------------------
  8. ;; (use-package scss-mode
  9. ;; :defer t
  10. ;; :mode ("\\.scss\\'" . scss-mode)
  11. ;; :config
  12. ;; (setq scss-compile-at-save 'nil))
  13. (provide 'init-scss)
  14. ;;; init-scss.el ends here