J'ai trouvé cet article:
http://blog.binchen.org/posts/easy-indentation-setup-in-emacs-for-web-development.html
J'ai ajouté de la présente partie du code dans mon .spacemacs fichier en dehors de toute fonction (mais avant d' (defun dotspacemacs/user-init () ... )
):
(defun my-setup-indent (n)
;; java/c/c++
(setq c-basic-offset n)
;; web development
(setq coffee-tab-width n) ; coffeescript
(setq javascript-indent-level n) ; javascript-mode
(setq js-indent-level n) ; js-mode
(setq js2-basic-offset n) ; js2-mode, in latest js2-mode, it's alias of js-indent-level
(setq web-mode-markup-indent-offset n) ; web-mode, html tag in html file
(setq web-mode-css-indent-offset n) ; web-mode, css in html file
(setq web-mode-code-indent-offset n) ; web-mode, js code in html file
(setq css-indent-offset n) ; css-mode
)
et ajoute la ligne
(my-setup-indent 2) ; indent 2 spaces width
dans l' (defun dotspacemacs/user-init () ... )
comme ceci:
(defun dotspacemacs/user-init ()
"Initialization function for user code.
It is called immediately after `dotspacemacs/init', before layer configuration
executes.
This function is mostly useful for variables that need to be set
before packages are loaded. If you are unsure, you should try in setting them in
`dotspacemacs/user-config' first."
(my-setup-indent 2) ; indent 2 spaces width
)