1
0
Fork 0
mirror of https://github.com/pnx/tree-sitter-dotenv synced 2026-06-16 01:54:56 +02:00

README.md: Update nvim filetype pattern.

This commit is contained in:
Henrik Hautakoski 2025-09-01 00:42:55 +02:00
parent 43a08ed422
commit 228d3d070b

View file

@ -27,7 +27,8 @@ config = function(_, opts)
-- Associate .env files as "dotenv"
vim.filetype.add({
pattern = {
['%.env.*'] = 'dotenv',
['%.env'] = 'dotenv',
['%.env%..+'] = 'dotenv',
},
})
end