Search code examples
sublimetext3

sublime theme in project settings


I have some projects. I have several windows open at the same time and I get confused in them. Is it possible in the project settings to set for each project its own theme (design)? try

    {
    "folders":
    [
        {
            "path": "server"
        },
        {
            "path": "sources"
        }
    ],
    "settings":
    {
        "tab_size": 4,
        "save_on_focus_lost": true,
        "theme": "Adaptive.sublime-theme"
    }
}

its not work


Solution

  • Indeed you cannot customise the theme per project, but you might have some luck with your problem by customising the colour scheme instead. It goes under the settings section where you tried to put the theme. So your .sublime-project file may look something like this:

    {
        "folders":
        [
            {
                "path": "/path/to/my/project/"
            }
        ],
        "settings":
        {
            "color_scheme": "Packages/Visual Studio Dark/Visual Studio Dark.tmTheme",
        }
    }
    

    Hope that works out for you 👍‍‍