> For the complete documentation index, see [llms.txt](https://nayzeee-dev.gitbook.io/docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://nayzeee-dev.gitbook.io/docs/nayzeee-scripts/nayzeee-carmenu/configuration.md).

# Configuration

<details>

<summary>View Full Config</summary>

```lua
--[[
    ███╗   ██╗ █████╗ ██╗   ██╗███████╗███████╗███████╗
    ████╗  ██║██╔══██╗╚██╗ ██╔╝╚══███╔╝██╔════╝██╔════╝
    ██╔██╗ ██║███████║ ╚████╔╝   ███╔╝ █████╗  █████╗  
    ██║╚██╗██║██╔══██║  ╚██╔╝   ███╔╝  ██╔══╝  ██╔══╝  
    ██║ ╚████║██║  ██║   ██║   ███████╗███████╗███████╗
    ╚═╝  ╚═══╝╚═╝  ╚═╝   ╚═╝   ╚══════╝╚══════╝╚══════╝
    
    NAYZEEE Car Menu - Configuration
    Premium Vehicle Control System
]]

Config = {}

-- ┌─────────────────────────────────────────────────────────────┐
-- │                      GENERAL SETTINGS                        │
-- └─────────────────────────────────────────────────────────────┘

Config.Command = 'carmenu'              -- Command to open menu
Config.UseKeybind = true                -- Enable keybind mapping
Config.Keybind = 'F5'                   -- Default keybind

-- ┌─────────────────────────────────────────────────────────────┐
-- │                      FEATURE TOGGLES                         │
-- └─────────────────────────────────────────────────────────────┘

Config.EnableDoors = true               -- Allow door control
Config.EnableWindows = true             -- Allow window control
Config.EnableSeats = true               -- Allow seat switching
Config.EnableEngine = true              -- Allow engine toggle
Config.EnableLocks = true               -- Allow vehicle lock/unlock
Config.EnableHazards = true             -- Allow hazard lights toggle
Config.EnableInteriorLight = true       -- Allow interior light toggle
Config.EnableNeonLights = true          -- Allow neon lights toggle
Config.EnableHighBeams = true           -- Allow high beam toggle
Config.EnableIndicators = true          -- Allow turn signal indicators
Config.EnableCruiseControl = true       -- Allow cruise control
Config.EnableLimpMode = true            -- Allow limp mode (speed limiter)

-- ┌─────────────────────────────────────────────────────────────┐
-- │                      UI SETTINGS                             │
-- └─────────────────────────────────────────────────────────────┘

Config.ShowFuelLevel = true             -- Display fuel level
Config.ShowEngineHealth = true          -- Display engine health
Config.ShowSpeed = true                 -- Display current speed
Config.SpeedUnit = 'mph'                -- 'mph' or 'kmh'

-- ┌─────────────────────────────────────────────────────────────┐
-- │                      NOTIFICATIONS                           │
-- └─────────────────────────────────────────────────────────────┘

Config.Locale = {
    not_in_vehicle = 'You must be in a vehicle',
    engine_on = 'Engine started',
    engine_off = 'Engine stopped',
    vehicle_locked = 'Vehicle locked',
    vehicle_unlocked = 'Vehicle unlocked',
    hazards_on = 'Hazard lights on',
    hazards_off = 'Hazard lights off',
    interior_light_on = 'Interior light on',
    interior_light_off = 'Interior light off',
    neon_on = 'Neon lights on',
    neon_off = 'Neon lights off',
    high_beams_on = 'High beams on',
    high_beams_off = 'High beams off'
}

-- ┌─────────────────────────────────────────────────────────────┐
-- │                      DEBUG                                   │
-- └─────────────────────────────────────────────────────────────┘

Config.Debug = false                    -- Enable debug prints

```

</details>
