Plugin configuration
Most plugins in Zeppelin have configurable options. The values for these options come from 3 places:
- Default options (from Zeppelin)
- Custom options (set by you in config)
- Overrides (conditional config values, see below)
Permissions are also just regular config options with a true
/false
value.
See the Permissions page for more info.
Information about each plugin's options can be found on the plugin's page, which can be accessed from the sidebar. See the Configuration format page for an example of a full config.
Overrides
Overrides are the primary mechanism of changing options and permissions based on permission levels, roles, channels, user ids, etc.
Default overrides
Many plugins have some overrides by default, usually for the default mod level (50) and/or the default admin level (100). These are applied before any custom overrides in the config.
You can see the default overrides for each plugin by checking the Default configuration section under the Configuration tab on the plugin's documentation page.
To replace a plugin's default overrides entirely, set replaceDefaultOverrides
to true
in
plugin options, on the same level as config
and overrides
. In the following example, any
default overrides the plugin had will no longer have an effect:
example_plugin:
config:
can_kick: false
replaceDefaultOverrides: true # <-- Here
overrides:
- level: ">=25"
config:
can_kick: true