Srcery theme for Visual Studio Code, based on srcery-colors/srcery-vim
Search for the Srcery
theme in the
marketplace
Search for the Srcery
theme in the registry,
where you can also download the vsix.
This code is from the neovim-qt project.
This theme is a work in progress, if you see something that is off or doesn't work please open an issue so it can be fixed.
It is actually fairly easy to see what the current git repository is setting as a colorscheme before it is released. This is a little like having an "Insiders" version of the theme, while the colorscheme (for the UI especially) is still being polished :
launch.json
:
// A launch configuration that launches the extension inside a new window
{
"version": "0.1.0",
"configurations": [
{
"name": "Extension",
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
"args": ["--extensionDevelopmentPath=${workspaceRoot}" ]
}
]
}
Thanks to bpruitt-godard for his port of Sourcerer, which helped me a lot to build a first working port of Srcery theme.