vscode-dotenv
vscode-dotenv copied to clipboard
No syntax highlighting for .env.<customNames>
Can anyone let me know if i can get syntax highlighting for custom environment names
You can associate custom file naming schemes through the vscode file association settings. See https://github.com/mikestead/vscode-dotenv#associate-files for an example.
In particular the setting that you seem to want is this:
"files.associations": {
".env.*": "dotenv"
},