Add experimental support for blade treesitter.

This commit is contained in:
aleidk 2023-11-10 15:59:14 -03:00
parent 6141e5a31f
commit 0404494c8a
5 changed files with 28 additions and 2 deletions

View file

@ -70,5 +70,6 @@ vim.filetype.add({
pattern = {
-- INFO: Match filenames like - ".env.example", ".env.local" and so on
["%.env%.[%w_.-]+"] = "dotenv",
[".*%.blade%.php"] = "blade",
},
})