dotfiles/home/modules/gui/apps/code/vsCode/config/userSettings.nix

35 lines
1 KiB
Nix
Raw Normal View History

2024-11-20 16:07:09 -06:00
{
lib,
pkgs,
2024-12-19 19:56:45 -06:00
flake,
2024-11-20 16:07:09 -06:00
...
2025-01-18 03:50:54 -06:00
}:
let
inherit (flake.config.aesthetics.themes)
fonts
2025-01-08 19:06:14 -06:00
;
2025-01-18 03:50:54 -06:00
in
{
2025-01-08 01:05:45 -06:00
"git.confirmSync" = false;
"editor.insertSpaces" = false;
"files.autoSave" = "afterDelay";
"git.enableSmartCommit" = true;
"nix.enableLanguageServer" = true;
"nix.serverPath" = lib.getExe pkgs.nil;
2025-01-16 15:17:25 -06:00
"nix.formatterPath" = lib.getExe pkgs.haskellPackages.nixfmt;
2025-01-08 01:05:45 -06:00
"window.menuBarVisibility" = "toggle";
"workbench.iconTheme" = "material-icon-theme";
"workbench.startupEditor" = "none";
2025-01-16 15:17:25 -06:00
"workbench.colorTheme" = "Catppuccin Macchiato";
2025-01-08 01:05:45 -06:00
"workbench.statusBar.visible" = false;
"editor.multiCursorLimit" = 700000;
"elmLS.disableElmLSDiagnostics" = true;
"elmLS.elmReviewDiagnostics" = "warning";
"editor.wordWrap" = "on";
"editor.fontSize" = fonts.sizes.applications.size0;
"editor.fontFamily" = "'${fonts.names.name0}', 'monospace', monospace";
"terminal.integrated.fontSize" = fonts.sizes.applications.size0;
"terminal.integrated.fontFamily" = "'${fonts.names.name0}', 'monospace', monospace";
2025-01-08 01:05:45 -06:00
"editor.fontLigatures" = true;
2024-11-20 16:07:09 -06:00
}