From 7cd2f709353bf25b06eb8eb6ed18f55e731e1595 Mon Sep 17 00:00:00 2001 From: 5HT2 Date: Sun, 31 Jul 2022 17:11:37 +0200 Subject: [PATCH] docs: Add `config/plugins.json` note --- README.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/README.md b/README.md index d72581a..776a5f1 100644 --- a/README.md +++ b/README.md @@ -42,3 +42,12 @@ This is the simplest example of the `config/config.json` file, you only need `bo "bot_token": "bot token goes here" } ``` + +You can also create a `config/plugins.json`, to select which plugins will be loaded. +This is optional, and a default (curated) will load if you do not set it. + +```json +{ + "loaded_plugins": ["example", "leave-join-msg"] +} +```