Emacsにtypescript環境を設定する
2429 ワード
ちょっとtypescript書くことになったのでEmacsに設定を追加します。
私はパッケージ管理にstraight.elを使っているので、詳しくは前回の記事を参照ください。
Emacs環境をアップデートする(straight.el)
以下のパッケージを入れて、シンタックスハイライト、補完などできるようにします。
- typescript-mode
- tide
init.el
;; typescript
(straight-use-package 'typescript-mode)
(straight-use-package 'tide)
(add-to-list 'auto-mode-alist '("\\.ts\\'" . typescript-mode))
(add-hook 'typescript-mode-hook
'(lambda ()
(interactive)
(tide-setup)
(flycheck-mode +1)
(tide-hl-identifier-mode +1)
(company-mode +1)
(eldoc-mode +1)
))
Author And Source
この問題について(Emacsにtypescript環境を設定する), 我々は、より多くの情報をここで見つけました https://qiita.com/yuze/items/76df309992534d75bd25著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .