LoginSignup
0
0

More than 5 years have passed since last update.

emacsでjs2-modeでインデントの設定をしたい

Posted at

emacsのjs2-modeのデフォルトのインデントがいけてない

init.elにこうかいてやればいい

(add-hook 'js2-mode-hook
          (lambda ()
             (setq my-js-mode-indent-num 2)
             (setq js2-basic-offset my-js-mode-indent-num)
             (setq js-switch-indent-offset my-js-mode-indent-num)
            ))

参考

0
0
0

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
0
0