nixfiles/home/programming/editors/vscode.nix

20 lines
625 B
Nix
Raw Normal View History

2023-09-18 03:56:58 +01:00
{...}: {
2022-11-11 16:32:26 +00:00
programs.vscode-mod = {
2021-12-21 14:00:09 +00:00
enable = true;
userSettings = {
2022-08-28 14:34:58 +01:00
"terminal.integrated.shellIntegration.enabled" = false;
"github.gitAuthentication" = false;
2023-09-18 03:56:58 +01:00
"editor.fontSize" = 24;
2021-12-21 15:26:21 +00:00
"editor.fontFamily" = "'Comic Code'";
2023-09-18 03:56:58 +01:00
"terminal.integrated.fontSize" = 18;
2021-12-21 15:26:21 +00:00
"editor.codeLensFontFamily" = "'Comic Code'";
"editor.inlayHints.fontFamily" = "'Comic Code'";
"markdown.preview.fontFamily" = "'Comic Code'";
"terminal.integrated.fontFamily" = "'Comic Code'";
"files.autoSave" = "afterDelay";
2023-09-18 03:56:58 +01:00
"window.zoomLevel" = 0;
2022-11-11 16:32:26 +00:00
"editor.tabSize" = 2;
2021-12-21 14:00:09 +00:00
};
};
2021-12-21 15:26:21 +00:00
}