all repos — archive/dotfiles @ 24cd05bbcd17c99b9db2cba36d8ea507f5d740d5

Superseded by nixfiles

Emacs: use prettier_d if available
Alan Pearce alan@alanpearce.eu
Fri, 26 Jul 2019 17:04:08 +0200
commit

24cd05bbcd17c99b9db2cba36d8ea507f5d740d5

parent

fa106e5ce27244ab0e9446f75fa8881b8ac31287

1 files changed, 5 insertions(+), 1 deletions(-)

jump to
M emacs/.emacs.d/main.elemacs/.emacs.d/main.el
@@ -595,7 +595,11 @@ ;;;; Reformat on save
 
 (use-package prettier-js
-  :ghook ('(typescript-mode-hook) #'prettier-js-mode t))
+  :ghook ('(typescript-mode-hook) #'prettier-js-mode t)
+  :config (progn
+            (if-let ((prettier_d (executable-find "prettier_d")))
+                (setq prettier-js-command prettier_d)
+              (message "prettier_d is not available"))))
 
 ;;; Take me to my leader