In my Scala project I decided to change predefined imports. By default compiler puts:
import java.lang._
import scala._
import scala.Predef._
into scope, but that can be controlled with compiler flags. And that's what I am curious about - is there a settings, hidden configuration or a plugin that allows me to change, add or override what imports Intellij thinks are always present?
Since 2.13 Scala officially supports Yimports
and IntelliJ respects that settings, which solves the issue.