Merge pull request #1645 from vikigenius/jsonnet-straight

Feature: Added support for jsonnet
This commit is contained in:
Henrik Lissner 2019-08-06 14:52:06 -04:00 committed by GitHub
commit 3ec66b7c1c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 0 deletions

View file

@ -37,6 +37,10 @@
:config :config
(set-electric! 'json-mode :chars '(?\n ?: ?{ ?}))) (set-electric! 'json-mode :chars '(?\n ?: ?{ ?})))
(use-package! jsonnet-mode
:defer t
:config
(set-electric! 'jsonnet-mode :chars '(?\n ?: ?{ ?})))
;; ;;
;; Frameworks ;; Frameworks

View file

@ -3,6 +3,7 @@
(package! graphql-mode) (package! graphql-mode)
(package! json-mode) (package! json-mode)
(package! jsonnet-mode)
(package! toml-mode) (package! toml-mode)
(package! yaml-mode) (package! yaml-mode)
(package! csv-mode) (package! csv-mode)