doomemacs/modules/lang/javascript/packages.el
Henrik Lissner 1371d34149
💥 Replace feature/jump with feature/lookup
+ Adds Dash docset integration (with helm or ivy support)
+ Adds devdocs.io integration
+ Three new settings: :lookup, :devdocs and :docset
2018-01-04 17:11:54 -05:00

22 lines
452 B
EmacsLisp

;; -*- no-byte-compile: t; -*-
;;; lang/javascript/packages.el
;; requires node npm tern js-beautify eslint eslint-plugin-react
(package! coffee-mode)
(package! js2-mode)
(package! js2-refactor)
(package! rjsx-mode)
(package! nodejs-repl)
(package! tern)
(package! web-beautify)
(package! skewer-mode)
(package! eslintd-fix)
(when (featurep! :completion company)
(package! company-tern))
(when (featurep! :feature lookup)
(package! xref-js2))