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

;;; Code:
;;----------------------------------------------------------------------------
;; Scss Mode
;;----------------------------------------------------------------------------
(use-package scss-mode
  :mode ("\\.scss\\'" . scss-mode))

(provide 'init-scss)

;;; init-scss.el ends here