mirror of
https://github.com/jimeh/.emacs.d.git
synced 2026-02-19 13:46:41 +00:00
25 lines
458 B
EmacsLisp
25 lines
458 B
EmacsLisp
;;; siren-scss.el --- jimeh's Emacs Siren: scss-mode configuration.
|
|
|
|
;;; Commentary:
|
|
|
|
;; Basic configuration for scss-mode.
|
|
|
|
;;; Code:
|
|
|
|
(require 'siren-css)
|
|
|
|
(use-package scss-mode
|
|
:mode "\\.scss\\'"
|
|
:hook (scss-mode . siren-scss-mode-setup)
|
|
|
|
:init
|
|
(defun siren-scss-mode-setup ()
|
|
(siren-css-mode-setup))
|
|
|
|
:config
|
|
;; turn off annoying auto-compile on save
|
|
(setq scss-compile-at-save nil))
|
|
|
|
(provide 'siren-scss)
|
|
;;; siren-scss.el ends here
|