Вы можете получить доступ к файлу конфигурации из другого плагина.
File configFile = new File(<JavaPlugin Object>.getServer().getWorldContainer().getAbsolutePath() + "/plugins/<Your Plugin Name>/config.yml"); // First we will load the file.
FileConfiguration config = YamlConfiguration.loadConfiguration(configFile); // Now we will load the file into a FileConfiguration.
После этого мы можем получить значения из конфигурации.
boolean randomValue = config.getBoolean("randomValue"); // Gets a boolean value.
Поздравляем! Теперь вы можете читать значения из другого плагина!