Reset IntelliJ UI to Default

Intellij Idea

Intellij Idea Problem Overview


I'm evaluating the IntelliJ IDE. I changed some of the display/font setting (among other things) and would like to reset the UI back to default. Is there a simple way to reset the display UI back to its default settings?

Intellij Idea Solutions


Solution 1 - Intellij Idea

Recent Versions

Window -> Restore Default Layout

(Thanks to Seven4X's answer)

Older Versions

You can simply delete the whole configuration folder ${user.home}/.IntelliJIdea60/config while IntelliJ IDEA is not running. Next time it restarts, everything is restored from the default settings.

It depends on the OS:

https://intellij-support.jetbrains.com/entries/23358108

Solution 2 - Intellij Idea

On Mac OS for IntelliJ v12, shut down the IDE, and then you can execute:

rm -rf ~/Library/Preferences/IdeaIC12/*

Restart the IDE, or open a pom.xml of your choosing. You will be asked whether you want to import the preferences from an existing IntelliJ instance. Select the "No, I do not have a previous IntelliJ version" radio button.

Solution 3 - Intellij Idea

You can delete IDEA configuration directory to reset everything to the defaults. If you want to reset the editor Colors&Fonts, then just switch the scheme to Default.

Solution 4 - Intellij Idea

All above answers are correct, but you loose configuration settings.

But if your IDE's only themes or fonts are changed or some UI related issues and you want to restore to default theme, then just delete

${user.home}/.IntelliJIdea13/config/options/options.xml

file while IDE is not running, then after next restart IDE's theme will gets reset to default.

Solution 5 - Intellij Idea

To switch between color schemes: Choose View -> Quick Switch Scheme on the main menu or press Ctrl+Back Quote To bring back the old theme: Settings -> Appearance -> Theme

Solution 6 - Intellij Idea

The existing answers are outdated. This is now doable from the menu:

Window -> Restore Default Layout (shift+f12)

Make sure nothing is currently running, as the Run/Debug window layout will not be reset otherwise.

Solution 7 - Intellij Idea

From the main menu, select File | Manage IDE Settings | Restore Default Settings.

Alternatively, press Shift twice and type Restore default settings

Solution 8 - Intellij Idea

check, if this works for you.

File -> Settings -> (type appe in search box) and select Appearance -> Select Intellij from dropdown option of Theme on the right (under UI Options).

Hope this helps someone.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionjmqView Question on Stackoverflow
Solution 1 - Intellij IdeaEvan MulawskiView Answer on Stackoverflow
Solution 2 - Intellij IdeaGeorge KovachevView Answer on Stackoverflow
Solution 3 - Intellij IdeaCrazyCoderView Answer on Stackoverflow
Solution 4 - Intellij IdeaPankaj ShindeView Answer on Stackoverflow
Solution 5 - Intellij IdeaLukaszView Answer on Stackoverflow
Solution 6 - Intellij IdeaRayView Answer on Stackoverflow
Solution 7 - Intellij Ideaharun ugurView Answer on Stackoverflow
Solution 8 - Intellij IdeaHussainView Answer on Stackoverflow