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:
    custom:
        enabled: True

Read global settings to know what you can add in this section.

A simple example to disable the extension axosoft.gitkraken-glo in the vscode module section and replace it by the extension mkloubert.vscode-kanban inside the custom section:

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

Last updated