Tutorials
Replace VSCode by VSCodium
VSCode is installed by default. If you prefer to use VSCodium instead then setvscodium
toTrue
inside thevscode_core
section in the vscode-anywhere.sls file:
After that, you have just to run the installation script again.
Set bash or PowerShell as default shell in Windows
The git installer provides the bash binary and it can be used as the default shell. To use bash as the default shell, set the following settings in thecustom
section in the vscode-anywhere.sls file:
Or you can use the default Windows PowerShell:
Or if powershell module is set to enabled
, you can use pwsh
(PowerShell core) instead:
After that, you have just to run the installation script again.
Change the default theme
All following examples must be set in in the vscode-anywhere.sls file and after editing this file you have to run the installation script.
Preconfigured theme
If the vscode module is enabled
, the default theme is set to One Dark Pro.
In this case, you must override the the workbench.colorTheme
settings.
If you prefer to change to another dark theme like Better Solarized Dark:
The vscode module also installs light theme: Ysgrifennwr and Better Solarized Light.
If want to change to Ysgrifennwr theme:
Or if you prefer Better Solarized Light:
Custom theme
If the vscode module is enabled
, in this case, you must configure your own theme in the vscode section to override the settings:
If the vscode module is not enabled
, in this case, you can configure your own theme in the custom section:
Change myCustomTheme
by the theme to use.
For more information, please read the documentation.
Change the default icon theme
All following examples must be set in in the vscode-anywhere.sls file and after editing this file you have to run the installation script.
Preconfigured icon theme
If the vscode module is enabled
, the default icon theme is set to vscode-icons.
Custom icon theme
If the vscode module is enabled
, in this case, you must configure your own icon theme in the vscode section to override the settings:
If the vscode module is not enabled
, in this case, you can configure your own icon theme in the custom section:
Change myCustomIconTheme
by the icon theme to use.
For more information, please read the documentation.
Last updated