nixfiles/home/programming/code.nix
2022-01-17 19:55:34 +00:00

20 lines
547 B
Nix

{ config, pkgs, ... }:
{
programs.vscode = {
enable = true;
userSettings = {
"window.zoomLevel" = -1;
"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";
"synthwave84.disableGlow" = true;
};
};
}