What would be the Kotlin formatter setting that le...
# random
c
What would be the Kotlin formatter setting that lets me format this code:
Copy code
val a = if (condition) {
    f()
} else {
    g()
}
like this:
Copy code
val a = if (condition) {
	    f()
	} else {
	    g()
	}
?