Add GLSL mode

This commit is contained in:
Alexander Rosenberg 2024-12-20 17:16:10 -08:00
parent 190627d982
commit 6cdd4f6aa3
Signed by: Zander671
GPG Key ID: 5FD0394ADBD72730

View File

@ -160,6 +160,7 @@
'((c "https://github.com/tree-sitter/tree-sitter-c") '((c "https://github.com/tree-sitter/tree-sitter-c")
(cpp "https://github.com/tree-sitter/tree-sitter-cpp") (cpp "https://github.com/tree-sitter/tree-sitter-cpp")
(java "https://github.com/tree-sitter/tree-sitter-java") (java "https://github.com/tree-sitter/tree-sitter-java")
;; (glsl "https://github.com/tree-sitter-grammars/tree-sitter-glsl")
(python "https://github.com/tree-sitter/tree-sitter-python") (python "https://github.com/tree-sitter/tree-sitter-python")
(rust "https://github.com/tree-sitter/tree-sitter-rust") (rust "https://github.com/tree-sitter/tree-sitter-rust")
(json "https://github.com/tree-sitter/tree-sitter-json") (json "https://github.com/tree-sitter/tree-sitter-json")
@ -1563,6 +1564,9 @@ otherwise, call `bibtex-find-text'."
"go" #'ff-find-other-file "go" #'ff-find-other-file
"gO" #'ff-find-other-file-other-window)) "gO" #'ff-find-other-file-other-window))
;; GLSL
(use-package glsl-mode)
;; php-mode ;; php-mode
(use-package php-mode (use-package php-mode
:hook (php-mode . eglot-ensure)) :hook (php-mode . eglot-ensure))