Skip to content

Instantly share code, notes, and snippets.

@nidate
Last active July 13, 2017 10:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nidate/d4177c02fe29cec010126185e7771ba2 to your computer and use it in GitHub Desktop.
Save nidate/d4177c02fe29cec010126185e7771ba2 to your computer and use it in GitHub Desktop.
emacs に prettier を入れる。
; nvm環境で、npm install -g prettier
; M-x list-packages で nvm と prettierを追加
; init.elに追加
(require 'nvm)
(nvm-use "v6.11.0")
(add-hook 'js2-mode-hook 'prettier-js-mode)
(add-hook 'web-mode-hook 'prettier-js-mode)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment