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)
|
2025-01-28 20:45:11 -06:00
|
|
|
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;
|
|
|
|
"editor.wordWrap" = "on";
|
2025-01-28 20:45:11 -06:00
|
|
|
"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;
|
2025-02-01 00:26:39 -06:00
|
|
|
"elmLS.disableElmLSDiagnostics" = true;
|
|
|
|
"elmLS.elmReviewDiagnostics" = "warning";
|
2025-03-18 21:57:24 -05:00
|
|
|
"elmLS.elmReviewPath" =
|
|
|
|
"/nix/store/ms3g9cnwjhd1adccxar3vxy1gj98zsba-elm-review-2.12.0/bin/elm-review";
|
|
|
|
"editor.formatOnSave" = true;
|
2024-11-20 16:07:09 -06:00
|
|
|
}
|