Make VSCode settings strings (#218)

Fixes settings being greyed out by code when you view settings.json
This commit is contained in:
Ujp8LfXBJ6wCPR 2024-01-17 14:11:23 +01:00 committed by GitHub
parent 9bc1900b68
commit 4ea345211e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -26,9 +26,9 @@ in {
programs.vscode = {
extensions = [ themeExtension ];
userSettings = {
workbench.colorTheme = "Stylix";
terminal.integrated.fontFamily = "'${monospace.name}'";
editor.fontFamily = "'${monospace.name}'";
"workbench.colorTheme" = "Stylix";
"terminal.integrated.fontFamily" = "'${monospace.name}'";
"editor.fontFamily" = "'${monospace.name}'";
};
};
};