diff --git a/daprdocs/content/en/developing-applications/ides/intellij.md b/daprdocs/content/en/developing-applications/ides/intellij.md
index 2239a816a..e7facc35f 100644
--- a/daprdocs/content/en/developing-applications/ides/intellij.md
+++ b/daprdocs/content/en/developing-applications/ides/intellij.md
@@ -23,9 +23,44 @@ Let's get started!
## Add Dapr as an 'External Tool'
-First, quit IntelliJ.
+First, quit IntelliJ before modifying the configurations file directly.
-Create or edit the file in `$HOME/.IdeaIC2019.3/config/tools/External\ Tools.xml` (change IntelliJ version in path if needed) to add a new `` entry:
+### IntelliJ configuration file location
+For versions [2020.1](https://www.jetbrains.com/help/idea/2020.1/tuning-the-ide.html#config-directory) and above the configuration files for tools should be located in:
+
+{{< tabs Windows Linux MacOS >}}
+
+{{% codetab %}}
+
+```powershell
+%USERPROFILE%\AppData\Roaming\JetBrains\IntelliJIdea2020.1\tools\
+```
+{{% /codetab %}}
+
+
+{{% codetab %}}
+ ```shell
+ $HOME/.config/JetBrains/IntelliJIdea2020.1/tools/
+ ```
+{{% /codetab %}}
+
+
+{{% codetab %}}
+```shell
+~/Library/Application Support/JetBrains/IntelliJIdea2020.1/tools/
+```
+{{% /codetab %}}
+
+
+{{< /tabs >}}
+
+> The configuration file location is different for version 2019.3 or prior. See [here](https://www.jetbrains.com/help/idea/2019.3/tuning-the-ide.html#config-directory) for more details.
+
+Change the version of IntelliJ in the path if needed.
+
+Create or edit the file in `/tools/External\ Tools.xml` (change IntelliJ version in path if needed). The `` is OS dependennt as seen above.
+
+Add a new `` entry:
```xml
@@ -33,10 +68,10 @@ Create or edit the file in `$HOME/.IdeaIC2019.3/config/tools/External\ Tools.xml
-
-
+
+
-
+
@@ -53,7 +88,7 @@ Optionally, you may also create a new entry for a sidecar tool that can be reuse
-
+
@@ -64,7 +99,7 @@ Optionally, you may also create a new entry for a sidecar tool that can be reuse
-
+
@@ -108,3 +143,7 @@ After debugging, make sure you stop both `dapr` and your app in IntelliJ.
>Note: Since you launched the service(s) using the **dapr** ***run*** CLI command, the **dapr** ***list*** command will show runs from IntelliJ in the list of apps that are currently running with Dapr.
Happy debugging!
+
+## Related links
+
+- [Change](https://intellij-support.jetbrains.com/hc/en-us/articles/206544519-Directories-used-by-the-IDE-to-store-settings-caches-plugins-and-logs) in IntelliJ configuration directory location