diff --git a/init.el b/init.el index 9662454..ca5d84a 100644 --- a/init.el +++ b/init.el @@ -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) ;;====================