Skip to content
This repository has been archived by the owner on Dec 12, 2018. It is now read-only.

Latest commit

 

History

History
39 lines (30 loc) · 663 Bytes

README.md

File metadata and controls

39 lines (30 loc) · 663 Bytes

Project archived. Just use mhmadhamster.postcss-language


PostCSS Syntax Highlighting

VSCode plugin to provide syntax highlighting for PostCSS files. It will pick up .css, .pcss, and .postcss files.

Emmet support

Include the following in your VS Code settings:

{
  ...
  "emmet.includeLanguages":{
    "postcss": "css"
  },
  "emmet.syntaxProfiles": {
    "postcss": "css"
  },
  ...
}

Enable for .css files

Include the following in your VS Code settings:

{
  ...
  "files.associations": {
    "*.css": "postcss"
  }
  ...
}