Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Reset default settings in WebStorm

I have applied this theme to WebStorm, but I do not like it.

How can I revert to WebStorm's default setting?

like image 345
Stalso Avatar asked Jun 27 '16 12:06

Stalso


People also ask

Where are WebStorm settings stored?

By default, WebStorm stores user-specific files for each IDE instance (configuration, caches, plugins, logs, and so on) in the user's home directory.

How do I change my IDE settings?

From the main menu choose File > Settings > Appearance & Behavior -- System Settings -- HTTP Proxy. In Android Studio, open the IDE Settings dialog. On Windows and Linux, choose File > Settings > IDE Setting -- HTTP Proxy. On Mac, choose Android Studio > Preferences > IDE Setting -- HTTP Proxy.

How do I import WebStorm settings?

Import settings from a ZIP archiveCall File | Manage IDE Settings | Import Settings from the main menu. Select the ZIP archive that contains your settings in the dialog that opens. Select the settings you want to apply in the Select Components to Import dialog that opens and click OK.

How to restore default IDE settings in WebStorm?

From the main menu, select File | Manage IDE Settings | Restore Default Settings. Alternatively, press Shift twice and type Restore default settings. In the confirmation popup that opens, click Restore and Restart. The IDE will be restarted with the default configuration. When WebStorm restores the default IDE settings, ...

How do I configure settings in WebStorm?

In WebStorm, you can configure settings for specific projects or globally, at the IDE level, see Configuring the IDE for details. The project level settings are applied to the current project only.

How do I restart the IDE with the default configuration?

The IDE will be restarted with the default configuration. When WebStorm restores the default IDE settings, it creates a backup directory with your configuration in: From the main menu, select File | Manage IDE Settings | Import Settings.

How do I restore the default settings in Visual Studio?

Back up your settings and restore the defaults From the main menu, select File | Manage IDE Settings | Restore Default Settings. Alternatively, press Shift twice and type Restore default settings. In the confirmation popup that opens, click Restore and Restart.


1 Answers

Depending on what OS you are on, you should be able to remove the config file and WebStorm will recreate it.

Normally, there are .idea folders as @camden_kid said.

https://www.jetbrains.com/help/webstorm/2016.1/project-and-ide-settings.html

Windows

<User home>\.WebStormXX\config that contains user-specific settings.

<User home> in WindowsXP is C:\Documents and Settings\<User name>\;
in Windows Vista it is C:\Users\<User name>\

Linux

/.WebStormXX/config that contains user-specific settings

Mac

~/Library/Preferences/WebStormXX contains the rest of the configuration settings.

You might be able to just swap theme depending on how destructive the theme files were.

  • https://www.jetbrains.com/help/webstorm/2016.1/appearance.html
  • https://stackoverflow.com/a/13505114/878344
like image 64
Zac Grierson Avatar answered Sep 21 '22 10:09

Zac Grierson