notepad++ - Applying CSS styles for SCSS files?

10

In Notepad++, I have some SCSS files for which I would like the syntax to be highlighted like CSS files are. How do I do this in Notepad++?

In other words, I would like to apply the same styles to SCSS files as I do CSS files.

OrangeZebra

Posted 2015-07-02T17:58:35.330

Reputation: 101

Answers

8

I would like to apply the same styles to SCSS files as I do CSS files.

This is done using the Style Configurator:

  • Menu > Settings > Style Configurator

  • Select "CSS" in the "Language" box

  • Add "scss" to the "User ext" field (you can add multiple extension separated by space)

  • Click "Save & Close"

  • Reopen your ".scss" file to see the highlighting.

    enter image description here

DavidPostill

Posted 2015-07-02T17:58:35.330

Reputation: 118 938