diff options
author | John Turner <jturner.usa@gmail.com> | 2023-09-12 01:23:04 -0400 |
---|---|---|
committer | John Turner <jturner.usa@gmail.com> | 2023-09-12 01:23:04 -0400 |
commit | 7b17ec369dac7d5cf13e6d219412ab2a675e9382 (patch) | |
tree | 760da4bdd58b7b283e6b86c9b62294283a855a59 /packages/treesit.el | |
parent | a0d2ce6a981b9adaf26360f3868caf5aa741de50 (diff) | |
download | emacs.d-7b17ec369dac7d5cf13e6d219412ab2a675e9382.tar.gz |
fix syntax
Diffstat (limited to 'packages/treesit.el')
-rw-r--r-- | packages/treesit.el | 7 |
1 files changed, 5 insertions, 2 deletions
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 |