nix-config/modules/home/vim/ftdetect/glsl.lua
Bruno BELANYI b8b64bed8e
All checks were successful
ci/woodpecker/push/check Pipeline was successful
home: vim: ftdetect: add glsl
2024-01-05 10:59:58 +00:00

8 lines
148 B
Lua

-- Use GLSL filetype for common shader file extensions
vim.filetype.add({
extension = {
frag = "glsl",
vert = "glsl",
},
})