diff options
author | Luke Shumaker <lukeshu@lukeshu.com> | 2018-01-10 19:06:47 -0500 |
---|---|---|
committer | Luke Shumaker <lukeshu@lukeshu.com> | 2018-01-10 19:31:53 -0500 |
commit | 971e265cac74976670da2a87805b644e90826b95 (patch) | |
tree | 0f057691fb11bd81c9329c997068a91f8d454c43 | |
parent | 17bdbb0b2c72899b11c3ee46817cb1353ccf36af (diff) |
emacs: add TypeScript mode
-rw-r--r-- | .config/emacs/init.el | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.config/emacs/init.el b/.config/emacs/init.el index e9bc3fb..4d6543b 100644 --- a/.config/emacs/init.el +++ b/.config/emacs/init.el @@ -107,6 +107,7 @@ :mode ("\\.php[s345t]?\\'" "/\\.php_cs\\(\\.dist\\)?\\'" "\\.phtml\\'" "/Amkfile\\'" "\\.amk\\'") :interpreter "php\\(?:-?[3457]\\(?:\\.[0-9]+\\)*\\)?") (use-package scss-mode :mode "\\.scss\\'") +(use-package typescript-mode :mode "\\.ts\\'") (use-package vue-mode :mode "\\.vue\\'") (use-package yaml-mode :mode "\\.\\(e?ya?\\|ra\\)ml\\'") |