diff options
author | Jesús <heckyel@hyperbola.info> | 2022-01-07 19:02:27 -0500 |
---|---|---|
committer | Jesús <heckyel@hyperbola.info> | 2022-01-07 19:02:27 -0500 |
commit | 524979eb11bb0e56f5a482d38840539f91afd7a9 (patch) | |
tree | 459a26b9fefb33e8eff1b74cce99a4467fda7bc9 /modules/init-typescript.el | |
parent | d2ddb582bd64270697057c64de33fc8802440e1f (diff) | |
download | emacs-personal-524979eb11bb0e56f5a482d38840539f91afd7a9.tar.lz emacs-personal-524979eb11bb0e56f5a482d38840539f91afd7a9.tar.xz emacs-personal-524979eb11bb0e56f5a482d38840539f91afd7a9.zip |
Add typescript-mode
Diffstat (limited to 'modules/init-typescript.el')
-rw-r--r-- | modules/init-typescript.el | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/modules/init-typescript.el b/modules/init-typescript.el new file mode 100644 index 0000000..6836122 --- /dev/null +++ b/modules/init-typescript.el @@ -0,0 +1,11 @@ +;;; init-typescript.el --- .Emacs Configuration -*- lexical-binding: t -*- +;;; Commentary: +;; + +;;; Code: +;; typescript-mode +(use-package typescript-mode + :mode ("\\.ts\\'" . typescript-mode)) + +(provide 'init-typescript) +;;; init-typescript.el ends here |