From: John Turner Date: Tue, 12 Sep 2023 05:23:04 +0000 (-0400) Subject: fix syntax X-Git-Url: https://jturnerusa.dev/gitweb/?a=commitdiff_plain;h=7b17ec369dac7d5cf13e6d219412ab2a675e9382;p=emacs.d fix syntax --- diff --git a/packages/treesit.el b/packages/treesit.el index ec9034b..d9326f8 100644 --- a/packages/treesit.el +++ b/packages/treesit.el @@ -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