Skip to content

Commit

Permalink
Make VSCode settings strings (#218)
Browse files Browse the repository at this point in the history
Fixes settings being greyed out by code when you view settings.json
  • Loading branch information
Lillecarl authored Jan 17, 2024
1 parent 9bc1900 commit 4ea3452
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions modules/vscode/hm.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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}'";
};
};
};
Expand Down

0 comments on commit 4ea3452

Please sign in to comment.