blob: e65f30a12d12a39225fc770d7d330cb59a66f29f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
;;; init-typescript.el --- .Emacs Configuration -*- lexical-binding: t -*-
;;; Commentary:
;;
;;; Code:
;; typescript-mode
(use-package tide :ensure t)
(use-package typescript-mode
:mode ("\\.ts\\'" . typescript-mode))
(provide 'init-typescript)
;;; init-typescript.el ends here
|