> ## Documentation Index
> Fetch the complete documentation index at: https://docs.qlty.sh/llms.txt
> Use this file to discover all available pages before exploring further.

# plugins enable

```bash lines theme={"system"}
qlty plugins enable [OPTIONS] [PLUGINS]...
```

Enable plugins for the current project

The command edits the current project's `qlty.toml` file to enable plugins.

## Arguments

<AccordionGroup>
  <Accordion title="[PLUGINS]...">Plugins to enable specified as name=version</Accordion>
</AccordionGroup>

## Examples

```bash Enable the latest version of shellcheck lines theme={"system"}
qlty plugins enable shellcheck
```

```bash Enable shellcheck version 1.2.3 lines theme={"system"}
qlty plugins enable shellcheck=1.2.3
```

```bash Enable rubocop and eslint lines theme={"system"}
qlty plugins enable rubocop eslint
```

## See Also

* [`plugins upgrade`](/cli/commands/plugins-upgrade)
* [`plugins disable`](/cli/commands/plugins-disable)
* [`plugins list`](/cli/commands/plugins-list)
* [Global Options](/cli/global-options)
