1

Add support for GLSL files

This commit is contained in:
Jessie Hildebrandt 2021-09-16 17:18:31 -04:00
parent 7f415394f2
commit cdda0fad55

View File

@ -449,7 +449,7 @@
;;====================
;; Currently Supported:
;; Lua, Fennel, PHP, Rust, Fish, C#, Dart, Kotlin, GDScript
;; Lua, Fennel, PHP, Rust, Fish, C#, Dart, Kotlin, GDScript, GLSL
;; Misc. Supported:
;; Docker, docker-compose
@ -537,6 +537,13 @@
("\\.gd\\'" . gdscript-mode)
("\\.tscn\\'" . gdscript-mode))
;; Load GLSL Mode
;; (Associated files: .frag, .vert)
(use-package glsl-mode
:mode
("\\.frag\\'" . glsl-mode)
("\\.vert\\'" . glsl-mode))
;;====================
;; LSP Mode (Language Server Support)
;;====================