ctrl+shift+p filters: :st2 :st3 :win :osx :linux
Browse

Quick​Themes

by chrislongo ALL

Quick theme switcher package for Sublime Text 2

Details

  • 2013.09.06.20.08.04
  • github.​com
  • github.​com
  • 11 years ago
  • 50 minutes ago
  • 13 years ago

Installs

  • Total 12K
  • Win 5K
  • Mac 5K
  • Linux 2K
Oct 23 Oct 22 Oct 21 Oct 20 Oct 19 Oct 18 Oct 17 Oct 16 Oct 15 Oct 14 Oct 13 Oct 12 Oct 11 Oct 10 Oct 9 Oct 8 Oct 7 Oct 6 Oct 5 Oct 4 Oct 3 Oct 2 Oct 1 Sep 30 Sep 29 Sep 28 Sep 27 Sep 26 Sep 25 Sep 24 Sep 23 Sep 22 Sep 21 Sep 20 Sep 19 Sep 18 Sep 17 Sep 16 Sep 15 Sep 14 Sep 13 Sep 12 Sep 11 Sep 10 Sep 9 Sep 8
Windows 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 1
Mac 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0
Linux 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1

Readme

Source
raw.​githubusercontent.​com

Info

QuickThemes allows you to easily cycle through any combination of Sublime Text 2 preferences. The obvious use is for changing color schemes, themes, and fonts simultaneously, but any of the ST2 preferences are available.

Usage

Super+Alt+0: Cycle up
Super+Alt+9: Cycle down

Alternatively, you can switch themes via Super+Shift+P and fuzzy search, e.g. “Super+Shift+P qtn” for next theme, “Super+Shift+P qtp” for previous theme.

Configuration

Best to configure it to match your environments in:

Preferences -> Package Settings -> QuickThemes -> Settings - User

Any preference you want to change must be included in the “quick_theme_defaults” section. Any preference not explicitly changed in a theme group will use the default. In the example below, the first group (#0) makes no changes; it simply makes the defaults available. The second group (#1) does not include a “font_size” preference, so it will use the default font_size of 12.

Example

Two modes to harmonize with ambient light:

{
    "quick_themes_selection": 0,
    "quick_themes_defaults":
    {
        "color_scheme": "Packages/Color Scheme - Default/Solarized (Dark).tmTheme",
        "font_face": "Source Code Pro Light",
        "font_size": 12
    },
    "quick_themes":
    [
        {}, // use defaults
        {
            "color_scheme": "Packages/Color Scheme - Default/Solarized (Light).tmTheme",
            "font_face": "Source Code Pro"
        }
    ]
}

Install

Easy Way

Install via Package Control

Hard Way

  • Change to Sublime Text packages folder:

    • OS X ~/Library/Application Support/Sublime Text 2/Packages/User
    • Windows %APPDATA%\Sublime Text 2\Packages\User
    • Linux ~/.config/sublime-text-2/Packages/User
  • Run the command:
    git clone https://github.com/chrislongo/QuickThemes.git

  • Set up your favorite themes to cycle through (see Info section above).