1
0
Fork 0

Add rjsx-mode to JS configuration

This commit is contained in:
Tom Willemse 2019-03-03 10:35:18 -08:00
parent 92f1b96890
commit 26a1b90fc3

View file

@ -5,7 +5,7 @@
;; Author: Tom Willemse <tom@ryuslash.org> ;; Author: Tom Willemse <tom@ryuslash.org>
;; Keywords: local ;; Keywords: local
;; Version: 20190224201011 ;; Version: 20190224201011
;; Package-Requires: (oni-company js2-mode js2-refactor flycheck fill-column-indicator tern company-tern fic-mode) ;; Package-Requires: (oni-company js2-mode js2-refactor flycheck fill-column-indicator tern company-tern fic-mode rjsx-mode)
;; This program is free software; you can redistribute it and/or modify ;; This program is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by ;; it under the terms of the GNU General Public License as published by
@ -69,6 +69,9 @@
;;;###autoload ;;;###autoload
(add-to-list 'auto-mode-alist '("\\.js\\'" . js2-mode)) (add-to-list 'auto-mode-alist '("\\.js\\'" . js2-mode))
;;;###autoload
(add-to-list 'auto-mode-alist '("\\.jsx\\'" . rjsx-mode))
;;;###autoload ;;;###autoload
(with-eval-after-load 'grep (with-eval-after-load 'grep
(add-to-list 'grep-files-aliases '("js" . "*.js *.jsx *.json"))) (add-to-list 'grep-files-aliases '("js" . "*.js *.jsx *.json")))