bitsper2nd / merge-monokai-theme

Monokai theme for Sublime Merge.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Theme - Monokai Plus

Monokai theme for Sublime Merge 2.

This implementation of Monokai uses the Sublime Merge Theme as a template with the Monokai color palette.

Install

Assuming the required color scheme is installed, git clone the project or download it into your Sublime Merge Packages folder as Monokai Theme. Edit your merge Preferences.sublime-settings file to use the Monokai theme:

    "theme": "Monokai Plus.sublime-theme"

For the square tabs version of this theme:

    "theme": "Monokai Plus SQ.sublime-theme"

Screenshots

Monokai Plus (Cognition)

machine

Monokai Plus (Machine)

machine

Monokai Plus (Octagon)

octagon

Monokai Plus

plus

Monokai Plus (Ristretto)

ristretto

Monokai Plus (Spectrum)

spectrum

Quick tip

Quickly switch between themes on Sublime Merge with the command palette:

  • Open a new file
  • Paste the following code:
// Change Theme
    [
        {
            "caption": "Change Theme: Cognition",
            "command": "set_preference",
            "args": {
                "setting": "theme",
                "value": "Monokai Plus (Cognition).sublime-theme"
            },
        },
        {
            "caption": "Change Theme: Machine",
            "command": "set_preference",
            "args": {
                "setting": "theme",
                "value": "Monokai Plus (Machine).sublime-theme"
            },
        },
        {
            "caption": "Change Theme: Octagon",
            "command": "set_preference",
            "args": {
                "setting": "theme",
                "value": "Monokai Plus (Octagon).sublime-theme"
            },
        },
        {
            "caption": "Change Theme: Monokai",
            "command": "set_preference",
            "args": {
                "setting": "theme",
                "value": "Monokai Plus.sublime-theme"
            },
        },
        {
            "caption": "Change Theme: Ristretto",
            "command": "set_preference",
            "args": {
                "setting": "theme",
                "value": "Monokai Plus (Ristretto).sublime-theme"
            },
        },
        {
            "caption": "Change Theme: Spectrum",
            "command": "set_preference",
            "args": {
                "setting": "theme",
                "value": "Monokai Plus (Spectrum).sublime-theme"
            },
        },
    ]
  • Save the file as Default.sublime-commands in Sublime Merge/Packages/User folder.
  • Open the command palette and type Change.

Extra

Here is the repo of the color scheme for Sublime Text. Also checkout my other theme based on the Mariana color palette.

About

Monokai theme for Sublime Merge.

License:MIT License