in ktfmt_idea_plugin/src/main/java/com/facebook/ktfmt/intellij/InitialConfigurationProjectManagerListener.java [44:57]
private void displayNewUserNotification(Project project, KtfmtSettings settings) {
Notification notification =
new Notification(
NOTIFICATION_GROUP.getDisplayId(),
NOTIFICATION_TITLE,
"The ktfmt plugin is disabled by default. "
+ "<a href=\"enable\">Enable for this project</a>.",
NotificationType.INFORMATION,
(n, e) -> {
settings.setEnabled(true);
n.expire();
});
notification.notify(project);
}