
How IntelliJ IDEs waste disk space
I love IntelliJ IDEs. I use Android Studio for Android, PyCharm for Python, and GoLand for Go. They are powerful. I just wish they didn’t fill my 500GB disk as if there is no tomorrow. For example, with IDE settings left over from old installations. Bash 1 2 3 4 5 6 7 8 9 10 11 12 $ du -shc ~/Library/Application\ Support/JetBrains/* | sort -h ... 264M JetBrains/PyCharm2023.2 359M JetBrains/PyCharmCE2023.2 382M JetBrains/PyCharmCE2023.3 387M JetBrains/PyCharmCE2024.1 625M JetBrains/GoLand2023.2 927M JetBrains/GoLand2024.1 938M JetBrains/GoLand2023.3 950M JetBrains/GoLand2024.2 ... 5.3G total If you check inside, it is mostly “plugins” that are consuming the disk space. It is safe to delete all the old versions of the settings unless you are planning to downgrade. ...