Skip to content

Latest commit

 

History

History
27 lines (22 loc) · 520 Bytes

ts.org

File metadata and controls

27 lines (22 loc) · 520 Bytes

Typescript IDE

Tide

Tide initialization

(use-package typescript-mode
  :ensure t)

(use-package tide
  :ensure t
  :after (typescript-mode company flycheck)
  :hook ((typescript-mode . tide-setup)
  (typescript-mode . tide-hl-identifier-mode)
  (before-save . tide-format-before-save)
  (tide-start-server-if-required)
  (eldoc-mode)
  ))

Provide this so that it may be required

(provide 'ts)