mirror of
https://github.com/jimeh/.emacs.d.git
synced 2026-02-19 13:46:41 +00:00
19 lines
347 B
EmacsLisp
19 lines
347 B
EmacsLisp
;;; siren-jsx.el --- jimeh's Emacs Siren: .jsx file configuration
|
|
|
|
;;; Commentary:
|
|
|
|
;; Basic configuration for dealing with .jsx files.
|
|
|
|
;;; Code:
|
|
|
|
(use-package rjsx-mode
|
|
:mode "components\\/.*\\.js\\'"
|
|
|
|
:hook (rjsx-mode . siren-rjsx-mode-setup)
|
|
|
|
:preface
|
|
(defun siren-rjsx-mode-setup ()))
|
|
|
|
(provide 'siren-jsx)
|
|
;;; siren-jsx.el ends here
|