<html><head><link rel="canonical" href="https://www.jetbrains.com/help/idea/managing-plugins.html.md/" data-react-helmet="true"/></head><body># Plugins

Plugins extend the core functionality of IntelliJ&nbsp;IDEA. For example, install plugins to integrate the IDE with version control systems, issue trackers, build management servers, get coding assistance support for various languages and frameworks, and more.

Most plugins can be used with any JetBrains product. Some are limited only to commercial products, others require a separate license.

If existing plugins do not provide some functionality that you need, you can create your own plugin for IntelliJ&nbsp;IDEA. For more information, refer to [Develop your own plugins](#plugin-dev).

## Install plugins

By default, IntelliJ&nbsp;IDEA includes bundled plugins that come with the IDE as part of its installation. You can install additional plugins from JetBrains Marketplace or from a local archive file (ZIP or JAR).

Procedure: Install a plugin from Marketplace

1. [Open settings](jetbrains://tool/settings?name=Plugins) or press `Ctrl+Alt+S` (Windows), `⌘ Comma` (macOS), `⌘ Comma` (IntelliJ IDEA Classic (macOS)), `⌘ Comma` (macOS System Shortcuts), `Ctrl+Alt+S` (XWin), `Ctrl+Alt+S` (GNOME), `Ctrl+Alt+S` (KDE), `Ctrl+Alt+S` (Emacs), `Ctrl+Alt+S` (Sublime Text), `⌘ Comma` (Sublime Text (macOS)), `Ctrl+Alt+S` (NetBeans), `Ctrl+Alt+S` (Visual Studio), `⌘ Comma` (Visual Studio (macOS)), `Ctrl+Alt+S` (Eclipse), `⌘ Comma` (Eclipse (macOS)) in your IDE and then select `Plugins`.

2. Click the Marketplace tab and type the plugin name in the search field.

Type a forward slash `/` in the search string to see options for filtering and sorting search results. For example, you can add the following options to your search string to list only AI-related plugins and sort them alphabetically by name:

```PLAINTEXT
/tag:AI /sortBy:name
```

3. To install the plugin, click Install  and restart the IDE if prompted.

To install a specific version, go to the plugin page in [JetBrains Marketplace](https://plugins.jetbrains.com/), download and install it as described in [Install plugin from disk](#install_plugin_from_disk). For example, you can do it if the most recent version of the plugin is broken.

Procedure: Open plugin settings

* [Open settings](jetbrains://tool/settings?name=Plugins) or press `Ctrl+Alt+S` (Windows), `⌘ Comma` (macOS), `⌘ Comma` (IntelliJ IDEA Classic (macOS)), `⌘ Comma` (macOS System Shortcuts), `Ctrl+Alt+S` (XWin), `Ctrl+Alt+S` (GNOME), `Ctrl+Alt+S` (KDE), `Ctrl+Alt+S` (Emacs), `Ctrl+Alt+S` (Sublime Text), `⌘ Comma` (Sublime Text (macOS)), `Ctrl+Alt+S` (NetBeans), `Ctrl+Alt+S` (Visual Studio), `⌘ Comma` (Visual Studio (macOS)), `Ctrl+Alt+S` (Eclipse), `⌘ Comma` (Eclipse (macOS)) in your IDE and then select `Plugins`.

![Plugins settings, Marketplace tab active, showing plugins list with Kubernetes and Solarized Theme; Kubernetes details on the right.](https://resources.jetbrains.com/help/img/idea/2026.2/plugins_settings.png)

Use the Marketplace tab to browse and install plugins from [JetBrains Marketplace](https://plugins.jetbrains.com/) or from a [custom plugin repository](#repos).

Use the Installed tab to browse bundled and installed plugins, enable, disable, update, or remove them. Disabling unnecessary plugins can increase performance.

If a plugin depends on some other plugin, you can find a list of the dependencies in the Additional Info tab. If your project depends on certain plugins, add them to the list of [required plugins](#required-plugins).

Procedure: Install plugin from disk

You can install a plugin from disk if you need a specific plugin version that you have downloaded from JetBrains Marketplace or a plugin provided by a third party. In this case, you install the plugin from a local ZIP or JAR archive.

1. Download the plugin archive (ZIP or JAR).

2. [Open settings](jetbrains://tool/settings?name=Plugins) or press `Ctrl+Alt+S` (Windows), `⌘ Comma` (macOS), `⌘ Comma` (IntelliJ IDEA Classic (macOS)), `⌘ Comma` (macOS System Shortcuts), `Ctrl+Alt+S` (XWin), `Ctrl+Alt+S` (GNOME), `Ctrl+Alt+S` (KDE), `Ctrl+Alt+S` (Emacs), `Ctrl+Alt+S` (Sublime Text), `⌘ Comma` (Sublime Text (macOS)), `Ctrl+Alt+S` (NetBeans), `Ctrl+Alt+S` (Visual Studio), `⌘ Comma` (Visual Studio (macOS)), `Ctrl+Alt+S` (Eclipse), `⌘ Comma` (Eclipse (macOS)) in your IDE and then select `Plugins`.

3. On the  Plugins  page, click ![The Settings button](https://resources.jetbrains.com/help/img/idea/2026.2/app.expui.general.settings.svg) Settings and then click  Install Plugin from Disk  .

![The Plugins settings page with the settings menu open, showing the "Install Plugin from Disk" option.](https://resources.jetbrains.com/help/img/idea/2026.2/py_install_plugin_from_disk.png)

4. Select the plugin archive file and click OK.

5. Click OK to apply the changes and restart the IDE if prompted.

Procedure: Install plugin from command line

Install plugins from the command line when you want to automate IDE setup or install plugins without using the graphical interface.

1. Quit the IDE on which you want to install the plugin.

2. In [JetBrains Marketplace](https://plugins.jetbrains.com/), find a page of the plugin that you want to install, scroll down to the Additional Information section, and copy the value from the Plugin ID parameter, for example, `org.jetbrains.plugins.github`.

3. Install the plugin:

Windows:

Navigate to the `bin` directory under your IntelliJ&nbsp;IDEA [installation directory](directories-used-by-the-ide-to-store-settings-caches-plugins-and-logs.html) and run the following command:

```
idea64.exe installPlugins <pluginid>
```

For example:

```
idea64.exe installPlugins org.jetbrains.plugins.github
```

macOS:

Run the following command:

```
open -na "IntelliJ&nbsp;IDEA.app" --args installPlugins <pluginid>
```

For example:

```
open -na "IntelliJ&nbsp;IDEA.app" --args installPlugins org.jetbrains.plugins.github
```

Linux:

Navigate to the `bin` directory under your IntelliJ&nbsp;IDEA [installation directory](directories-used-by-the-ide-to-store-settings-caches-plugins-and-logs.html) and run the following command:

```
idea.sh installPlugins <pluginid>
```

For example:

```
idea.sh installPlugins org.jetbrains.plugins.github
```

&gt; **Tip:**
&gt; If you are using the [Toolbox App](https://www.jetbrains.com/toolbox/app/), you can run this command using the shell script generated by Toolbox App. You can find the script name and location in Toolbox App, in the IDE settings. For more information, refer to [Shell scripts generated by the Toolbox App](working-with-the-ide-features-from-command-line.html#toolbox).

For more information, refer to [Install plugins from the command line](install-plugins-from-the-command-line.html).

## Update plugins

Procedure: Update plugins manually

1. [Open settings](jetbrains://tool/settings?name=Plugins) or press `Ctrl+Alt+S` (Windows), `⌘ Comma` (macOS), `⌘ Comma` (IntelliJ IDEA Classic (macOS)), `⌘ Comma` (macOS System Shortcuts), `Ctrl+Alt+S` (XWin), `Ctrl+Alt+S` (GNOME), `Ctrl+Alt+S` (KDE), `Ctrl+Alt+S` (Emacs), `Ctrl+Alt+S` (Sublime Text), `⌘ Comma` (Sublime Text (macOS)), `Ctrl+Alt+S` (NetBeans), `Ctrl+Alt+S` (Visual Studio), `⌘ Comma` (Visual Studio (macOS)), `Ctrl+Alt+S` (Eclipse), `⌘ Comma` (Eclipse (macOS)) in your IDE and then select `Plugins`.

2. If a new version of an installed plugin is available, the Update button appears in the plugin settings. Click it to update the plugin.

![Installed plugins tab with Kafka plugin selected; Update button visible for the newer available version.](https://resources.jetbrains.com/help/img/idea/2026.2/update_plugins.png)

To configure whether your IDE should check for updates, open Settings `Ctrl+Alt+S` (Windows), `⌘ Comma` (macOS), `⌘ Comma` (IntelliJ IDEA Classic (macOS)), `⌘ Comma` (macOS System Shortcuts), `Ctrl+Alt+S` (XWin), `Ctrl+Alt+S` (GNOME), `Ctrl+Alt+S` (KDE), `Ctrl+Alt+S` (Emacs), `Ctrl+Alt+S` (Sublime Text), `⌘ Comma` (Sublime Text (macOS)), `Ctrl+Alt+S` (NetBeans), `Ctrl+Alt+S` (Visual Studio), `⌘ Comma` (Visual Studio (macOS)), `Ctrl+Alt+S` (Eclipse), `⌘ Comma` (Eclipse (macOS)) and go to `Appearance &amp; Behavior | System Settings | Updates`. On this page, you can also click Check for Updates to manually check your plugin repository for available plugin updates.

If you prefer the IDE to update all plugins automatically, you can [configure it accordingly](#update-plugins-automatically).

For more information about the IDE and plugin updates, refer to [Update IntelliJ&nbsp;IDEA](update.html).

Procedure: Update plugins automatically

By default, IntelliJ&nbsp;IDEA notifies you to manually update a plugin when a new version of the plugin becomes available. You can configure IntelliJ&nbsp;IDEA to automatically download plugin updates and apply them on the next IDE restart.

1. [Open settings](jetbrains://tool/settings?name=Plugins) or press `Ctrl+Alt+S` (Windows), `⌘ Comma` (macOS), `⌘ Comma` (IntelliJ IDEA Classic (macOS)), `⌘ Comma` (macOS System Shortcuts), `Ctrl+Alt+S` (XWin), `Ctrl+Alt+S` (GNOME), `Ctrl+Alt+S` (KDE), `Ctrl+Alt+S` (Emacs), `Ctrl+Alt+S` (Sublime Text), `⌘ Comma` (Sublime Text (macOS)), `Ctrl+Alt+S` (NetBeans), `Ctrl+Alt+S` (Visual Studio), `⌘ Comma` (Visual Studio (macOS)), `Ctrl+Alt+S` (Eclipse), `⌘ Comma` (Eclipse (macOS)) in your IDE and then select `Plugins`.

2. Click ![The Settings button](https://resources.jetbrains.com/help/img/idea/2026.2/app.expui.general.settings.svg) Settings and select Update Plugins Automatically.

![Settings dialog, Plugins page, gear icon menu open with Update Plugins Automatically option checked and highlighted.](https://resources.jetbrains.com/help/img/idea/2026.2/update_plugin_automatically.png)

Alternatively, go to `Appearance &amp; Behavior | System Settings | Updates` and select Update plugins automatically.

## Deactivate plugins

Procedure: Disable plugins

You can disable a plugin without removing it if you do not need the corresponding functionality, but you do not want to uninstall the plugin from your IDE.

1. [Open settings](jetbrains://tool/settings?name=Plugins) or press `Ctrl+Alt+S` (Windows), `⌘ Comma` (macOS), `⌘ Comma` (IntelliJ IDEA Classic (macOS)), `⌘ Comma` (macOS System Shortcuts), `Ctrl+Alt+S` (XWin), `Ctrl+Alt+S` (GNOME), `Ctrl+Alt+S` (KDE), `Ctrl+Alt+S` (Emacs), `Ctrl+Alt+S` (Sublime Text), `⌘ Comma` (Sublime Text (macOS)), `Ctrl+Alt+S` (NetBeans), `Ctrl+Alt+S` (Visual Studio), `⌘ Comma` (Visual Studio (macOS)), `Ctrl+Alt+S` (Eclipse), `⌘ Comma` (Eclipse (macOS)) in your IDE and then select `Plugins`.

2. Open the Installed tab, find and select the plugin that you want to disable.

3. On the plugin's description pane, click Disable.

Alternatively, you can use the checkboxes in the list of plugins or the Disable all buttons for plugin categories.

You can disable or enable all manually installed plugins at once (non-bundled) in the menu under ![The Settings button](https://resources.jetbrains.com/help/img/idea/2026.2/app.expui.general.settings.svg) Settings.

![Disable all downloaded plugins](https://resources.jetbrains.com/help/img/idea/2026.2/plugins-disable-all.png)

Procedure: Uninstall plugins

&gt; **Note:**
&gt; You cannot uninstall bundled plugins.

1. [Open settings](jetbrains://tool/settings?name=Plugins) or press `Ctrl+Alt+S` (Windows), `⌘ Comma` (macOS), `⌘ Comma` (IntelliJ IDEA Classic (macOS)), `⌘ Comma` (macOS System Shortcuts), `Ctrl+Alt+S` (XWin), `Ctrl+Alt+S` (GNOME), `Ctrl+Alt+S` (KDE), `Ctrl+Alt+S` (Emacs), `Ctrl+Alt+S` (Sublime Text), `⌘ Comma` (Sublime Text (macOS)), `Ctrl+Alt+S` (NetBeans), `Ctrl+Alt+S` (Visual Studio), `⌘ Comma` (Visual Studio (macOS)), `Ctrl+Alt+S` (Eclipse), `⌘ Comma` (Eclipse (macOS)) in your IDE and then select `Plugins`.

2. Open the Installed tab and find the plugin that you want to remove.

3. Expand the Disable list and select Uninstall.

![The Uninstall item for plugins](https://resources.jetbrains.com/help/img/idea/2026.2/plugins_uninstall.png)

&gt; **Tip:**
&gt; If you need to remove a plugin without launching IntelliJ&nbsp;IDEA, you can delete it manually from the [plugin directory](directories-used-by-the-ide-to-store-settings-caches-plugins-and-logs.html#plugins-directory).

## Required plugins

A project may require plugins that provide support for certain technologies or frameworks. You can add such plugins to the list of required plugins for the current project, so that IntelliJ&nbsp;IDEA will verify that the plugins are installed and enabled. It will notify you if you forget about some plugin, or someone on your team is not aware about the dependency as they work on the project.

Procedure: Add a required plugin for your current project

&gt; **Note:**
&gt; Make sure the required plugin is installed.

1. Press `Ctrl+Alt+S` (Windows), `⌘ Comma` (macOS), `⌘ Comma` (IntelliJ IDEA Classic (macOS)), `⌘ Comma` (macOS System Shortcuts), `Ctrl+Alt+S` (XWin), `Ctrl+Alt+S` (GNOME), `Ctrl+Alt+S` (KDE), `Ctrl+Alt+S` (Emacs), `Ctrl+Alt+S` (Sublime Text), `⌘ Comma` (Sublime Text (macOS)), `Ctrl+Alt+S` (NetBeans), `Ctrl+Alt+S` (Visual Studio), `⌘ Comma` (Visual Studio (macOS)), `Ctrl+Alt+S` (Eclipse), `⌘ Comma` (Eclipse (macOS))  to open settings and then select `Appearance &amp; Behavior | Required Plugins`.

2. On the Required Plugins page, click ![The Add icon](https://resources.jetbrains.com/help/img/idea/2026.2/app.expui.general.add.svg) Add and select the plugin. Optionally, specify the minimum and maximum version of the plugin.

&gt; **Tip:**
&gt; To specify the required version of IntelliJ&nbsp;IDEA itself, add IDE Core to the list of required plugins.

The list of required plugins is stored in the `.idea/externalDependencies.xml` file of your project. When you open the project in IntelliJ&nbsp;IDEA, it will notify you if the required plugin is disabled, not installed, or requires an update.

Click the link in the notification message to quickly enable, install, or update the required plugin.

## Suggested plugins

When you open a project, IntelliJ&nbsp;IDEA can suggest installing and enabling plugins based on libraries and facets used in your project. Do not confuse suggested plugins with [required plugins](#required-plugins) that you can manually add to a project so that your teammates also use it.

&gt; **Tip:**
&gt; For more information about the criteria for suggesting plugins, refer to the [JetBrains Marketplace documentation](https://plugins.jetbrains.com/docs/marketplace/intellij-plugin-recommendations.html).

If you don't need a particular plugin, you can prevent IntelliJ&nbsp;IDEA from suggesting it. You can also use your [notification settings](settings-notifications.html) to disable or enable notifications of all plugin suggestions and the way they are displayed.

Procedure: Disable suggestions of a plugin

* When a notification of a suggested plugin appears, click Don't suggest again.

Next time when you open a project, IntelliJ&nbsp;IDEA will not suggest this plugin.

Procedure: Check a project for suggested plugins

You can check your project for suggested plugins except for plugins for which you have [disabled suggestions](#disable-plugin-suggestions).

1. Press `Ctrl+Shift+A` (Windows), `⌘ ⇧ A` (macOS), `⌘ ⇧ A` (IntelliJ IDEA Classic (macOS)), `⌘ ⇧ P` (macOS System Shortcuts), `Ctrl+Shift+A` (XWin), `Ctrl+Shift+A` (GNOME), `Ctrl+Shift+A` (KDE), `Escape, X` (Emacs), `Ctrl+Shift+P` (Sublime Text), `⌘ ⇧ P` (Sublime Text (macOS)), `Ctrl+I` (NetBeans), `Ctrl+Shift+A` (Visual Studio), `⌘ ⇧ A` (Visual Studio (macOS)), `Ctrl+Shift+A` (Eclipse), `⌘ 3` (Eclipse (macOS)) and start typing Check Suggested Plugins.

2. Select the Check Suggested Plugins action.

![Go to Action popup showing Check Suggested Plugins action highlighted as the top result under the Actions tab.](https://resources.jetbrains.com/help/img/idea/2026.2/check_suggested_plugins.png)

3. If IntelliJ&nbsp;IDEA has a plugin applicable to your project, you'll see the notification message. Click the link in the notification message to install or enable the suggested plugin.

Alternatively, you can open the IDE settings (`Ctrl+Alt+S` (Windows), `⌘ Comma` (macOS), `⌘ Comma` (IntelliJ IDEA Classic (macOS)), `⌘ Comma` (macOS System Shortcuts), `Ctrl+Alt+S` (XWin), `Ctrl+Alt+S` (GNOME), `Ctrl+Alt+S` (KDE), `Ctrl+Alt+S` (Emacs), `Ctrl+Alt+S` (Sublime Text), `⌘ Comma` (Sublime Text (macOS)), `Ctrl+Alt+S` (NetBeans), `Ctrl+Alt+S` (Visual Studio), `⌘ Comma` (Visual Studio (macOS)), `Ctrl+Alt+S` (Eclipse), `⌘ Comma` (Eclipse (macOS))) and go to `Plugins | Marketplace`: If there are plugins suggested for your project, they will be displayed on top of the plugin list, in the Suggested section.

![Plugins Marketplace tab showing Suggested section with Kafka, Remote File Systems, and Kubernetes plugins available to install.](https://resources.jetbrains.com/help/img/idea/2026.2/suggested_plugins_marketplace.png)

## Develop your own plugins

You can use any edition of IntelliJ&nbsp;IDEA to develop plugins. It provides an open API, a dedicated SDK, module, and run/debug configurations to help you.

The recommended workflow is to use Gradle. The old workflow using the internal IntelliJ&nbsp;IDEA build system is also supported. For more information, refer to the [IntelliJ Platform SDK Developer Guide](https://plugins.jetbrains.com/docs/intellij/welcome.html).

## Custom plugin repositories

By default, IntelliJ&nbsp;IDEA is configured to use plugins from [JetBrains Marketplace](https://plugins.jetbrains.com/). This is a public repository where everyone can host their plugins. However, if you develop plugins for internal use only, you can set up a custom plugin repository for them.

For more information about setting up a custom plugin repository, see the [IntelliJ Platform SDK documentation](https://plugins.jetbrains.com/docs/intellij/custom-plugin-repository.html).

Once you set up your plugin repository, add it to IntelliJ&nbsp;IDEA:

Procedure: Add custom repositories

1. [Open settings](jetbrains://tool/settings?name=Plugins) or press `Ctrl+Alt+S` (Windows), `⌘ Comma` (macOS), `⌘ Comma` (IntelliJ IDEA Classic (macOS)), `⌘ Comma` (macOS System Shortcuts), `Ctrl+Alt+S` (XWin), `Ctrl+Alt+S` (GNOME), `Ctrl+Alt+S` (KDE), `Ctrl+Alt+S` (Emacs), `Ctrl+Alt+S` (Sublime Text), `⌘ Comma` (Sublime Text (macOS)), `Ctrl+Alt+S` (NetBeans), `Ctrl+Alt+S` (Visual Studio), `⌘ Comma` (Visual Studio (macOS)), `Ctrl+Alt+S` (Eclipse), `⌘ Comma` (Eclipse (macOS)) in your IDE and then select `Plugins`.

2. On the  Plugins  page, click ![The Settings button](https://resources.jetbrains.com/help/img/idea/2026.2/app.expui.general.settings.svg) Settings and select  Manage Plugin Repositories… .

3. In the Custom Plugin Repositories dialog, click ![The Add icon](https://resources.jetbrains.com/help/img/idea/2026.2/app.expui.general.add.svg) Add and specify your repository URL. It must point to the location of the [XML file that describes your plugin](https://plugins.jetbrains.com/docs/intellij/update-plugins-format.html#format-of-updatepluginsxml-file), for example, `updatePlugins.xml`. The file can be on the same server as your custom plugins, or on a dedicated one.

![How to add a custom plugin repository](https://resources.jetbrains.com/help/img/idea/2026.2/plugins_add_custom_repo.png)

4. Click OK in the Custom Plugin Repositories dialog to save the list of plugin repositories.

5. Click OK in the Settings dialog to apply the changes.

When you search for plugins, IntelliJ&nbsp;IDEA will show you results both from default [JetBrains Marketplace](https://plugins.jetbrains.com/) and any custom repositories that you specify. To browse only a certain custom plugin repository, type `repository:` followed by the URL of the repository in the search field on the Marketplace tab of the Plugins page. For example:

```PLAINTEXT
repository:http://plugins.example.com:8080/updatePlugins.xml myPlugin
```

Alternatively, you can add your custom plugin repositories using the `idea.plugin.hosts` property:

Procedure:

1. Go to `Help | Edit Custom Properties…`.

2. Add the `idea.plugin.hosts` property to the platform properties file and specify the URL of the [XML file that describes your plugin](https://plugins.jetbrains.com/docs/intellij/update-plugins-format.html#format-of-updatepluginsxml-file). For example:

```PLAINTEXT
idea.plugin.hosts="http://plugins.example.com:8080/updatePlugins.xml"
```

&gt; **Note:**
&gt; To add multiple URLs, separate them with semicolons `;`.

3. Restart IntelliJ&nbsp;IDEA.

You may want to replace default [JetBrains Marketplace](https://plugins.jetbrains.com/) with your custom plugin repository. This can be helpful if you want only your custom repository plugins to be available from IntelliJ&nbsp;IDEA.

Procedure: Replace the default plugin repository

1. Go to `Help | Edit Custom Properties…`.

2. Add the `idea.plugins.host` property to the platform properties file and specify the URL of the application that can properly handle requests from IntelliJ&nbsp;IDEA, that is, act as the default plugin repository application instead of [JetBrains Marketplace](https://plugins.jetbrains.com/).

In particular, it should handle the following requests:

* [Get the list of plugins](https://plugins.jetbrains.com/docs/marketplace/plugins-list.html)

* [Download the latest plugin update](https://plugins.jetbrains.com/docs/marketplace/plugin-update-download.html)

3. Restart IntelliJ&nbsp;IDEA.

If you replace the default plugin repository, the search field on the Marketplace tab of the Plugins dialog will browse only the plugins in the new default repository and any custom repositories that you add.

## Productivity tips

### Install plugins from links

Some websites that integrate with the IDE, documentation pages, and tutorials might include links that open your IDE and prompt you to install a plugin. When you click an installation link:

1. Your IDE opens.

2. The IDE checks whether the requested plugin is available.

3. If the plugin is compatible, you are prompted to install or enable it.

4. After installation, the plugin is ready to use. If a restart is required, the IDE will prompt you.

If multiple plugins are included in the link, you can install them in a single operation.

For example, you can use this link to [install the
Mercurial plugin](jetbrains://tool/plugin/install?id=hg4idea).

</pluginid></pluginid></pluginid></body></html>