Post

Trimming Down the Visual Studio 2013 UI

Here’s Visual Studio Community 2013 General settings defaults:

If you want to simplify the UI, it’s possible to turn it into this:

Instructions

Here’s how to achieve the trimmed down screenshot above:

  • First, reset your settings with the Web Development (Code Only) settings.
    • Tools -> Import and Export Settings… -> Reset all settings -> No, just reset settings, overwriting my current settings (or, save your existing settings if you’d like…) -> Web Development (Code Only)
  • If you prefer having Solution Explorer always visible, now is an OK time to Un-Auto Hide it.
  • Next, hide the menu bar.
    • Install the Hide Main Menu Visual Studio extension. You can press Alt to reveal the menu bar when necessary.
  • Now, you can download and import this settings file with Tools -> Import and Export Settings…, or you can do the following:
    • Tools -> Options -> Environment -> General -> Deselect “Show status bar”
      • You’ll lose the ability to see the build status indicator on the status bar. You can view the build progress in the Output window, which you can open quickly with Ctrl+Alt+o.
    • Tools -> Options -> Text Editor -> General -> Deselect “Selector margin”
    • Tools -> Options -> Text Editor -> General -> Deselect “Indicator margin”
      • You’ll lose the ability to click the indicator margin area to set and remove breakpoints. You can press F9 as a substitute, or right click -> Breakpoint context menu item.
    • Tools -> Options -> Text Editor -> All Languages -> General -> Deselect “Navigation bar”
    • Tools -> Options -> Text Editor -> All Languages -> Scroll Bars -> Deselect “Show annotations over vertical scroll bar”
    • Tools -> Options -> Text Editor -> C# -> Advanced -> Deselect “Enter outlining mode when files open”

Final notes

At this point you may want to perform your own customizations. You may prefer to enable line numbers, or have your test runner always visible.

As new items like Error List appear during usage, you can decide what to do with them.

Also, if you prefer having items visible that use significant space, consider using Full Screen as a view that doesn’t contain those items when you need additional real estate. You can toggle it with Shift+Alt+Enter or with View -> Full Screen on the main menu.

This post is licensed under CC BY 4.0 by the author.