emacs: Add and enable janet-ts-mode

This commit is contained in:
Payas Relekar 2023-06-03 15:12:56 +05:30
parent 1e5e7abd39
commit 3250308fcc

View file

@ -174,6 +174,9 @@ Tangle ~packages.el~ from within org-mode.
(package! combobulate
:recipe (:type git :host github :repo "mickeynp/combobulate"))
(package! janet-ts-mode
:recipe (:type git :host github :repo "sogaiu/janet-ts-mode"))
#+end_src
* Modus-themes
Customize Modus-themes a little to make it more peppy and vibrant.
@ -1141,3 +1144,9 @@ When Emacs is opened in Windows Subsystem for Linux, open web links in Firefox o
(css-ts-mode . combobulate-mode)
(yaml-ts-mode . combobulate-mode)))
#+end_src
** Janet
#+begin_src emacs-lisp :lexical t
(use-package! janet-ts-mode
:mode ("\\.janet\\'" . janet-ts-mode))
#+end_src