mirror of
https://github.com/jimeh/.emacs.d.git
synced 2026-02-19 13:46:41 +00:00
- Split large modules into smaller parts (e.g. siren-text-manipulation) - Organize modules into high level groups: - completion - core - editor - languages - linting - misc - navigation - projects - spelling - text-editing - version-control - windows - workspaces
17 lines
354 B
EmacsLisp
17 lines
354 B
EmacsLisp
;;; siren-prettier-js.el --- jimeh's Emacs Siren: prettier-js configuration.
|
|
|
|
;;; Commentary:
|
|
|
|
;; Basic configuration for prettier-js package
|
|
|
|
;;; Code:
|
|
|
|
(use-package prettier-js
|
|
:hook (prettier-js-mode . siren-prettier-js-mode-setup)
|
|
|
|
:init
|
|
(defun siren-prettier-js-mode-setup ()))
|
|
|
|
(provide 'siren-prettier-js)
|
|
;;; siren-prettier-js.el ends here
|