- ;;; 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
|