I want the tab to be 8 spaces width, but at the same time I want to keep my space-based indents at 4 spaces. That is, here is how it should be:
if (a == b) {
> this line is indented with a tab
}
if (a == b) {
....this line is indented with 4 spaces
}
Is it possible somehow?