xxxxxxxxxx
// vscode emmet auto completion for nunjucks
// .vscode/settings.json
```json
{
"files.associations": { "*.njk": "njk", "*.nj": "njk", "*.css": "tailwindcss" },
"editor.quickSuggestions": {
"strings": true
},
"emmet.showExpandedAbbreviation": "always",
"emmet.includeLanguages": {
"ejs": "html",
"njk": "html",
"nunjucks": "html",
"Nunjucks": "html"
}
}
```