From 6a18a2161c7a779170610b7652bbb5086daabcda Mon Sep 17 00:00:00 2001 From: Alek Ratzloff Date: Fri, 3 Jun 2022 20:45:52 -0700 Subject: [PATCH] Move another module to the top of the example config because it has full explanations of everything going on Signed-off-by: Alek Ratzloff --- config.example.toml | 38 +++++++++++++++++++------------------- 1 file changed, 19 insertions(+), 19 deletions(-) diff --git a/config.example.toml b/config.example.toml index 5fb396d..ed5a57e 100644 --- a/config.example.toml +++ b/config.example.toml @@ -19,25 +19,6 @@ nick = "omnibot" channels = ["#friends", "#chat"] # A plugin block starts with [[plugins]] - -[[plugins]] -# The nickserv module registers and logs in a bot upon initial connection. -module = "plugins.nickserv" - -# password -# The password used to log in to this server using NickServ. -password = "my_password" - -# email -# The email address to use for this server when registering with NickServ. -# default: omnibotomni.bot -# email = "omnibotomni.bot" - -# nickserv -# The nickname for the nickserv user. -# default: "NickServ" -# nickserv = "NickServ" - [[plugins]] # The module to load this plugin from. This should be a Python module. # This is required. @@ -61,6 +42,25 @@ channels = ["#fortune_telling"] # A list of fortunes, or a path to a list of fortunes - one per line. fortunes = "data/fortunes.txt" + +[[plugins]] +# The nickserv module registers and logs in a bot upon initial connection. +module = "plugins.nickserv" + +# password +# The password used to log in to this server using NickServ. +password = "my_password" + +# email +# The email address to use for this server when registering with NickServ. +# default: omnibotomni.bot +# email = "omnibotomni.bot" + +# nickserv +# The nickname for the nickserv user. +# default: "NickServ" +# nickserv = "NickServ" + [[plugins]] # Linkbot module will fetch the title of a value at a URL. module = "plugins.linkbot"