nixfiles/home/programming/editors/vscode.nix

22 lines
635 B
Nix
Raw Normal View History

2021-12-21 14:00:09 +00:00
{ config, pkgs, ... }:
{
programs.vscode = {
enable = true;
userSettings = {
2022-01-29 18:06:26 +00:00
"editor.tabSize" = 4;
2022-01-30 15:34:50 +00:00
"window.zoomLevel" = 1;
2022-01-29 18:06:26 +00:00
"workbench.preferredDarkColorTheme" = "SynthWave '84";
2021-12-21 15:26:21 +00:00
"editor.fontSize" = 24;
"editor.fontFamily" = "'Comic Code'";
"terminal.integrated.fontSize" = 24;
"editor.codeLensFontFamily" = "'Comic Code'";
"editor.inlayHints.fontFamily" = "'Comic Code'";
"markdown.preview.fontFamily" = "'Comic Code'";
"terminal.integrated.fontFamily" = "'Comic Code'";
"files.autoSave" = "afterDelay";
2022-01-17 19:55:34 +00:00
"synthwave84.disableGlow" = true;
2021-12-21 14:00:09 +00:00
};
};
2021-12-21 15:26:21 +00:00
}