Add support for GLSL files
This commit is contained in:
parent
7f415394f2
commit
cdda0fad55
9
init.el
9
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)
|
||||
;;====================
|
||||
|
Loading…
Reference in New Issue
Block a user