home: vim: ftdetect: add glsl
ci/woodpecker/push/check Pipeline was successful Details

This commit is contained in:
Bruno BELANYI 2024-01-05 10:59:58 +00:00
parent 9546c00124
commit b8b64bed8e
1 changed files with 7 additions and 0 deletions

View File

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