# Configuration

### config.lua:

```lua
Config = {}

Config.Commands = {
    {
        name = 'keybindspos',
        action = function()
            SetNuiFocus(true, true)
        end
    },
    {
        name = 'toggleSidebar',
        action = function()
            SendNUIMessage({
                action = 'keybinds:toggle'
            })
        end
    },
    {
        name = 'sidebarlinks',
        action = function()
            SendNUIMessage({
                action = 'keybinds:setPosition',
                data = "left",
            })
        end
    },
    {
        name = 'sidebarrechts',
        action = function()
            SendNUIMessage({
                action = 'keybinds:setPosition',
                data = "right",
            })
        end
    }
}

Config.KeyBinds = {
    {
        icon = 'phone',
        key = 'F1',
    },
    {
        icon = 'radio',
        key = 'N',
    },
    {
        icon = 'inventory',
        key = 'F4',
    },
    {
        icon = 'lock',
        key = 'I',
    },
    {
        icon = 'trunk',
        key = 'K',
    },
    {
        icon = 'target',
        key = 'Alt',
    }
}
```
