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
|
|
|
|
inherit (flake.config.aesthetics.themes.theme) font;
|
|
|
|
in {
|
2024-11-20 16:07:09 -06:00
|
|
|
userSettings = {
|
|
|
|
"git.confirmSync" = false;
|
|
|
|
"editor.insertSpaces" = false;
|
|
|
|
"files.autoSave" = "afterDelay";
|
|
|
|
"git.enableSmartCommit" = true;
|
|
|
|
"nix.enableLanguageServer" = true;
|
|
|
|
"nix.serverPath" = lib.getExe pkgs.nil;
|
|
|
|
"nix.formatterPath" = lib.getExe pkgs.alejandra;
|
|
|
|
"window.menuBarVisibility" = "toggle";
|
|
|
|
"workbench.iconTheme" = "material-icon-theme";
|
|
|
|
"workbench.startupEditor" = "none";
|
|
|
|
"workbench.colorTheme" = "Catppuccin Mocha";
|
|
|
|
"workbench.statusBar.visible" = false;
|
|
|
|
"editor.multiCursorLimit" = 700000;
|
|
|
|
"elmLS.disableElmLSDiagnostics" = true;
|
|
|
|
"elmLS.elmReviewDiagnostics" = "warning";
|
2024-12-08 22:53:40 -06:00
|
|
|
"editor.wordWrap" = "on";
|
2024-12-19 19:56:45 -06:00
|
|
|
"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
|
|
|
};
|
|
|
|
}
|