# Custom

## About

By default custom do nothing...

***custom*** is a particular module. It allows you to install custom extensions, settings, keybindings, documentations, packages...

## Installation

Change `enable` from `False` to `True` in the `custom` section (cf [module installation](/vscode-anywhere/modules/install.md)).

```yaml
vscode-anywhere:
    custom:
        enabled: True
```

{% hint style="info" %}
Read [global settings](/vscode-anywhere/modules/settings/global.md) to know what you can add in this section.
{% endhint %}

A simple example to disable the extension [axosoft.gitkraken-glo](https://marketplace.visualstudio.com/items?itemName=axosoft.gitkraken-glo) in the `vscode` module section and replace it by the extension [mkloubert.vscode-kanban](https://marketplace.visualstudio.com/items?itemName=mkloubert.vscode-kanban) inside the `custom` section:

```yaml
vscode-anywhere:
  custom:
    enabled: True
    vscode:
      extensions:
        mkloubert.vscode-kanban:
          enabled: True
  vscode:
    enabled: True
    vscode:
      extensions:
        axosoft.gitkraken-glo:
          enabled: False
```


---

# 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://gigi206.gitbook.io/vscode-anywhere/modules/list/custom.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.
