LoginSignup
6
5

More than 5 years have passed since last update.

scss-modeでインデント幅をスペース2個(タブ無し)にする

Last updated at Posted at 2013-08-20

scssのインデントをタブを使わずに、スペース2個にしたい。

scss-modeのインストールはこちらを参照。 https://github.com/antonj/scss-mode

こんな風に書いたらいけました。

(defun scss-custom ()
  (setq indent-tabs-mode nil)
  (setq css-indent-offset 2)
  )

(add-hook 'scss-mode-hook
  '(lambda() (scss-custom)))
6
5
2

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
6
5