dotfiles/home/modules/vscode/config/userSettings.nix

25 lines
715 B
Nix
Raw Normal View History

2024-11-20 16:07:09 -06:00
{
lib,
pkgs,
...
}: {
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-11-20 16:07:09 -06:00
};
}