feat(lang): add jsonnet-mode

This commit is contained in:
2020-09-27 19:46:27 +01:00
parent bda82a9c77
commit 5937589cc5
3 changed files with 20 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
;;; siren-jsonnet.el --- jimeh's Emacs Siren: jsonnet-mode configuration.
;;; Commentary:
;; Basic configuration for jsonnet-mode.
;;; Code:
(use-package jsonnet-mode
:hook
(jsonnet-mode . siren-jsonnet-mode-setup)
:init
(defun siren-jsonnet-mode-setup ()
"Default tweaks for `jsonnet-mode'."))
(provide 'siren-jsonnet)
;;; siren-js.el ends here