mirror of
https://github.com/jimeh/.emacs.d.git
synced 2026-02-19 13:46:41 +00:00
14 lines
280 B
EmacsLisp
14 lines
280 B
EmacsLisp
;;; siren-jsx.el --- jimeh's Emacs Siren: .jsx file configuration
|
|
|
|
;;; Commentary:
|
|
|
|
;; Basic configuration for dealing with .jsx files.
|
|
|
|
;;; Code:
|
|
|
|
(require 'siren-web-mode)
|
|
(add-to-list 'auto-mode-alist '("\\.jsx\\'" . web-mode))
|
|
|
|
(provide 'siren-jsx)
|
|
;;; siren-jsx.el ends here
|