0

As I am using Semantic UI, most CSS is written in .override files. I need Visual Studio to treat these files as .css extension and format accordingly (with distinctive colors and auto format).

Does anyone know how to config this in Visual Studio Code? Thank you.

enter image description here

lehoang
  • 3,577
  • 1
  • 15
  • 16

1 Answers1

1

Go to user settings and add a file association with

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

Section

More info here VS Code File associations

Sergio Rivas
  • 543
  • 3
  • 9