> For the complete documentation index, see [llms.txt](https://hxp-docs.juriantech.nl/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://hxp-docs.juriantech.nl/configuration/config.md).

# Config

This page goes over the config.yml and its options! View the plugin's [default config.yml here](/default-files/config.yml.md).

#### Update Checker <a href="#update-checker" id="update-checker"></a>

Copy

```
Update-Check: false
```

Setting this option to `true` would make the plugin alert you in console (when the server starts) if there is an update!

#### Creative Mode <a href="#creative-mode" id="creative-mode"></a>

Copy

```
Allow-Creative: false
```

Setting this to `true` means the plugin will still award XP to players in Creative mode.

#### Command Settings <a href="#command-settings" id="command-settings"></a>

Copy

```
Command:
  name: harvestxp
  aliases:
    - harvestexp
    - xpharvest
    - expharvest
```

These are the options for the plugin's command. You may change the name and aliases of the command! If you don't want any aliases, simply make it look like the following:

Copy

```
Command:
  name: harvestxp
  aliases: []
```

You can change the command's name as well, but it must have a name.

Changing any command settings require a server restart to change!

#### Permissions <a href="#permissions" id="permissions"></a>

Copy

```
Permissions:
  info: harvestxp.info
  help: harvestxp.help
  reload: harvestxp.reload
  crops: harvestxp.crops
```

These are the permissions to execute certain plugin commands, such as `/harvestxp` or `/harvestxp panel`

Each are configurable, if you remove a permission, it will act as if everyone has the permission for that command. You can use the same permissions for multiple commands as well.

#### World Blacklist <a href="#world-blacklist" id="world-blacklist"></a>

Copy

```
World-Blacklist:
  - world1Name
  - world2Name
```

This option is different than the [world blacklist option in crops.yml](https://arrowtan-resources.gitbook.io/harvestxpdocs/harvestxp/configuration/crops#world-blacklist)! In config.yml, any world in the world blacklist will apply to all crops! Any crop you harvest in a blacklisted world will not give any XP!

You can remove all worlds from the world blacklist, simply make it look like the following:

Copy

```
World-Blacklist: []
```
