[web/js/ts] Set indentation levels
This commit is contained in:
parent
53a0115657
commit
52186554a0
1 changed files with 17 additions and 2 deletions
19
config.org
19
config.org
|
@ -1595,7 +1595,19 @@ Source: [[https://github.com/emacs-typescript/typescript.el][GitHub: emacs-types
|
||||||
|
|
||||||
#+begin_src emacs-lisp
|
#+begin_src emacs-lisp
|
||||||
(use-package typescript-mode
|
(use-package typescript-mode
|
||||||
:mode "\\.ts\\'")
|
:mode "\\.ts\\'"
|
||||||
|
:config
|
||||||
|
(setq typescript-indent-level 2))
|
||||||
|
#+end_src
|
||||||
|
|
||||||
|
** JavaScript
|
||||||
|
|
||||||
|
Load the built-in JavaScript mode to set it's indentation.
|
||||||
|
|
||||||
|
#+begin_src emacs-lisp
|
||||||
|
(use-package js
|
||||||
|
:config
|
||||||
|
(setq js-indent-level 2))
|
||||||
#+end_src
|
#+end_src
|
||||||
|
|
||||||
** Web Mode
|
** Web Mode
|
||||||
|
@ -1618,7 +1630,10 @@ Source: [[https://github.com/fxbois/web-mode][GitHub: fxbois/web-mode]]
|
||||||
:config
|
:config
|
||||||
(setq web-mode-script-padding 0)
|
(setq web-mode-script-padding 0)
|
||||||
(setq web-mode-code-indent-offset 2)
|
(setq web-mode-code-indent-offset 2)
|
||||||
(setq web-mode-markup-indent-offset 2))
|
(setq web-mode-markup-indent-offset 2)
|
||||||
|
(setq web-mode-css-indent-offset 2)
|
||||||
|
(setq web-mode-style-padding 0)
|
||||||
|
(setq web-mode-enable-comment-annotation t))
|
||||||
#+end_src
|
#+end_src
|
||||||
|
|
||||||
** YAML
|
** YAML
|
||||||
|
|
Loading…
Reference in a new issue