I want to enable word wrap only for specific file types, for example for .tex and .txt files. In my settings.json, I've added the following lines:
"[latex]": {
"editor.wordWrap": "on"
},
"[plaintext]": {
"editor.wordWrap": "on"
}
Is there a way to combine these two options into one to avoid duplication?