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
|
|
|
...
|
2024-12-19 19:56:45 -06:00
|
|
|
}: let
|
2025-01-08 19:06:14 -06:00
|
|
|
inherit
|
2025-01-14 16:17:42 -06:00
|
|
|
(flake.config.aesthetics.themes)
|
2025-01-08 19:06:14 -06:00
|
|
|
font
|
|
|
|
;
|
2024-12-19 19:56:45 -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" = 14;
|
|
|
|
"editor.fontFamily" = "'${font}', 'monospace', monospace";
|
|
|
|
"terminal.integrated.fontSize" = 14;
|
|
|
|
"terminal.integrated.fontFamily" = "'${font}', 'monospace', monospace";
|
|
|
|
"editor.fontLigatures" = true;
|
2024-11-20 16:07:09 -06:00
|
|
|
}
|