nix-config/modules/home/vim/ftdetect/glsl.lua

8 lines
148 B
Lua
Raw Normal View History

2024-01-05 11:59:58 +01:00
-- Use GLSL filetype for common shader file extensions
vim.filetype.add({
extension = {
frag = "glsl",
vert = "glsl",
},
})