It is possible to set lang-based tabe sizes in VSC like this:
"[sass]": {
"editor.tabSize": 2
},
"[html]": {
"editor.tabSize": 4
},
"[javascript]": {
"editor.tabSize": 2
}
But its doesnt work for pug language, where identation is always 4 spaces. It doesnt even overwrite with "editor.tabSize: 2". How do i make another value of tabsize for pug ?