# Configuration

The state of all optional features are loaded from the `{game}/x64/scripts/config/TheInsurgentsManifestoConfig.lua` file when opening the game. This configuration file can be modified via any text editor.

The following configuration is the default:

<details>

<summary>Default Configuration</summary>

```lua
local configStates = {
  smartStealingGambits = true,
  trueInvisibility = true,
  thirtySixGambitsAndOneSet = false,
  hideEquipmentOutOfBattle = false,
  customAutoSheatheDelay = true,
  noHiddenEffectsOnPause = true,
  noChainLootPickupPunishment = false,
  noAutoPause = false,
  noAutoSave = false,
  noIntroLogo = true,
  noCrashDumper = true
}

local configParameters = {
  customAutoSheatheDelay = 1
}

return configStates, configParameters
```

</details>

Below is a list of all configurable options and what they are used for:

#### Config States

A list of all options and their state.

To enable an option, set their state to `true`, and to disable it, set it to `false`.

#### Config Parameters

A list of options with their configurable parameters.

For example: The option `Custom Auto-Sheathe Delay` with the parameter `1` would result in an auto-sheathe delay of 1 second after battle.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://xeavin.gitbook.io/the-insurgents-manifesto/getting-started/configuration.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
