# Config file

{% code title="VEHICLE HUD CONFIG FILE" %}

```lua
Config = {}

Config.AvailableCommandToogle = true

Config.ShowVehicleHUD = true

--When you use this command then hud will close.
Config.SetCommand = "vehiclehud_toogle"

Config.Keys = {
    seatbelt = "b", 
    speedlimit = "CAPITAL" -- CAPSLOCK
}
```

{% endcode %}

{% code title="MAIN HUD CONFIG FILE" %}

```lua
Config = {}

Config.ShowRadarOnlyInCar = false

Config.ShowWeaponsHUD = true
Config.ShowJobHUD = true
Config.ShowMoneyHUD = true
Config.ShowTimeAndDate = true
Config.ShowStatsHUD = true

Config.AvailableCommandToogle = true

--When you use this command then hud will close.
Config.SetCommand = "hud_toogle"

Config.MoneyHud = {
    blackmoneyitem = "black_money",
    moneyitem = "money",
    bankaccount = "bank"
}
```

{% endcode %}

{% code title="COMPAS HUD CONFIG FILE" %}

```lua
Config = {}

Config.ShowStreet = true 

Config.CompasHUD = true

Config.AvailableCommandToogle = true

--When you use this command then hud will close.
Config.SetCommand = "compas_toogle"
```

{% endcode %}
