FileConfiguration config = instance.getConfig();
...
ConfigurationSection titleSection = config.getConfigurationSection("titleMessages");
if (titleSection == null)
titleSection = config.createSection("titleMessages");
if (titleSection.getStringList("titles") == null)
titleSection.set("titles", new ArrayList<>(Arrays.asList("&cYou died!", "&cGame over!")));