Project archived. Just use mhmadhamster.postcss-language
VSCode plugin to provide syntax highlighting for PostCSS files. It will pick up
.css
, .pcss
, and .postcss
files.
Include the following in your VS Code settings:
{
...
"emmet.includeLanguages":{
"postcss": "css"
},
"emmet.syntaxProfiles": {
"postcss": "css"
},
...
}
Include the following in your VS Code settings:
{
...
"files.associations": {
"*.css": "postcss"
}
...
}