]> jturnerusa.dev Git - emacs.d/commitdiff
fix syntax
authorJohn Turner <jturner.usa@gmail.com>
Tue, 12 Sep 2023 05:23:04 +0000 (01:23 -0400)
committerJohn Turner <jturner.usa@gmail.com>
Tue, 12 Sep 2023 05:23:04 +0000 (01:23 -0400)
packages/treesit.el

index ec9034b69aa5814e2ebf279727095111a4605438..d9326f86a5d2081aab70a1b9824b13d64c32f8d7 100644 (file)
@@ -5,8 +5,11 @@
   ((rx (literal ".") "py" eos) . python-ts-mode)
   ((rx (literal ".") "sh" eos) . bash-ts-mode)
   :interpreter
-  (("python" "python3" "python2") . python-ts-mode)
-  (("bash" "sh" "openrc-run") . bash-ts-mode))
+  ("python" . python-ts-mode)
+  ("python3" . python-ts-mode)
+  ("bash" . bash-ts-mode)
+  ("sh" . bash-ts-mode)
+  ("openrc-run" . bash-ts-mode))
 
 (use-package rust-ts-mode
     :requires treesit