Reputation: 3304
I use sublimetext and as we are now switching our system to microservices I end up having to work at the same time on different projects at the same time (ex. main project and microservice project).
It would be really helpful to have some kind of visual clue about which editor I currently open (also for easier task switching).
I installed supersettings package, which should allow me to set custom sublimetext configuration per directory, but I'm struggling to configure different color_schemes or themes with it.
here's what I have in Preferences.sublime-settings
:
{
"color_scheme": "Monokai"
}
when I open sublime I get this error:
Error loading colour scheme Monokai: Unable to open Monokai
any ideas?
here's my sublime-project file:
{
"folders":
[
{
"path": "."
}
],
"theme": "Adaptive",
"settings": {
// "color_scheme": "Packages/Material Monokai/MaterialMonokai.tmTheme",
}
}
it doesn't seem to change the theme.
Upvotes: 0
Views: 221
Reputation: 102922
You need to give the full name of the color scheme file. It's just the file name, as Sublime will determine the path automatically. So, your settings should have this line:
"color_scheme": "MaterialMonokai.tmTheme"
As an aside, I would encourage you to make use of Sublime's project features instead of relying on a very little-used plugin that may or may not work in all situations, and definitely doesn't have all the features that projects support.
Upvotes: 1