aboutsummaryrefslogtreecommitdiffstats
path: root/modules/init-scss.el
blob: 2d4c707809e2aaf6fde732e92e42aeaa61bfc336 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
;;; init-scss.el --- .Emacs Configuration -*- lexical-binding: t -*-
;;; Commentary:
;;

;;; Code:
;;----------------------------------------------------------------------------
;; Scss Mode
;;----------------------------------------------------------------------------
;; (use-package scss-mode
;;   :defer t
;;   :mode ("\\.scss\\'" . scss-mode)
;;   :config
;;   (setq scss-compile-at-save 'nil))

(provide 'init-scss)

;;; init-scss.el ends here