When extracting a variable (Ctrl+Alt+V) in IntelliJ IDEA with Java 11, I would like for the default to be that it is extracted to a var
instead of the verbose type.
var home = "127.0.0.1";
instead of
String home = "127.0.0.1";
Is there a way to configure IntelliJ IDEA to do this?