From 159442ae76488c12708fa72dcdfe13f8d8e64645 Mon Sep 17 00:00:00 2001 From: Mohsin Kaleem Date: Mon, 1 Jan 2024 15:27:39 +0000 Subject: [PATCH] langs/jq: Initial commit configuration --- init.org | 21 ++++++++++++++++++++- 1 file changed, 20 insertions(+), 1 deletion(-) diff --git a/init.org b/init.org index 2b597bd..e65c6cd 100644 --- a/init.org +++ b/init.org @@ -446,7 +446,7 @@ Welcome to my personal Emacs configuration 😎. javascript ;; typescript ; NOTE requires javascript to also be enabled json - ;; jupyter + ;; jq ;; kotlin ;; glsl ;; log @@ -20783,6 +20783,25 @@ Welcome to my personal Emacs configuration 😎. (provide '+lang-json) #+end_src +** JQ + :PROPERTIES: + :header-args+: :tangle (package-lisp! +lang-json json) + :END: + + #+begin_src emacs-lisp :tangle (package-yes! jq) + (require '+lang-jq) + #+end_src + + #+begin_src emacs-lisp + (use-package jq-mode + :straight t + :mode (rx ".jq" eol)) + #+end_src + + #+begin_src emacs-lisp + (provide '+lang-jq) + #+end_src + ** Kotlin :PROPERTIES: :header-args+: :tangle (package-lisp! +lang-kotlin kotlin)