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

# Config.lua

### Framework setup

Set your server´s framework.

* 1 for ESX
* 2 for QBCORE

```lua
Config.Framework = {
    -- 1 = esx
    -- 2 = qbcore
    Active = 0,
```

### 💬 Locale setup

Set the language file loaded from `rcore_fuel/locales`.

```lua
Config.Locale = "en"
```

* You can also add your own trnaslation by copying `en.lua` file from `rcore_fuel/locales`.
* Change its name to your region code for example `es.lua`.
* Make a translation in that file.
* Change file name in `config.lua`.

### 🔎 Auto detection

These options are detected automatically by default:

| Option                 | Default                   |
| ---------------------- | ------------------------- |
| Config.SkinChangerType | SkinChangerType.AUTOMATIC |
| Config.InventorySystem | Inventory.AUTOMATIC       |
| Config.SocietySystem   | Society.AUTOMATIC         |

### Measurement system

Set measure system for rcore\_fuel.

* METRIC = `MeasurementUnits.METRIC`
* IMPERIAL = `MeasurementUnits.IMPERIAL`

```lua
Config.MeasurementUnits = MeasurementUnits.METRIC
```

### Keymaps

Set keymappings for each action.

```lua
Config.KeyMaps = {}
```

You can find all default key mappings at:

{% content-ref url="/pages/vs8lXLDpSRyF8W57efNh" %}
[Commands and Keybinds](/paid-resources/rcore_fuel/features/commands-and-keybinds.md)
{% endcontent-ref %}
