update/clean up user settings

This commit is contained in:
John Bowdre 2023-08-18 11:14:11 -05:00
parent 00d26453b6
commit 1fa99855e6

View file

@ -125,6 +125,16 @@
} }
]; ];
userSettings = { userSettings = {
"autoalign.moveableItems" = [
"="
":"
"+="
"-="
];
"autoalign.nonMoveableItemsAdditional" = [
"ks="
"ds="
];
"diffEditor.ignoreTrimWhitespace" = false; "diffEditor.ignoreTrimWhitespace" = false;
"editor.acceptSuggestionOnCommitCharacter" = false; "editor.acceptSuggestionOnCommitCharacter" = false;
"editor.acceptSuggestionOnEnter" = "off"; "editor.acceptSuggestionOnEnter" = "off";
@ -136,6 +146,7 @@
"editor.tabCompletion" = "off"; "editor.tabCompletion" = "off";
"editor.tabSize" = 2; "editor.tabSize" = 2;
"explorer.confirmDragAndDrop" = false; "explorer.confirmDragAndDrop" = false;
"extensions.autoCheckUpdates" = false;
"files.hotExit" = "onExitAndWindowClose"; "files.hotExit" = "onExitAndWindowClose";
"files.trimTrailingWhitespace" = true; "files.trimTrailingWhitespace" = true;
"git.confirmSync" = false; "git.confirmSync" = false;
@ -153,23 +164,23 @@
}; };
"powershell.promptToUpdatePowerShell" = false; "powershell.promptToUpdatePowerShell" = false;
"security.workspace.trust.untrustedFiles" = "open"; "security.workspace.trust.untrustedFiles" = "open";
"vim.statusBarColorControl" = true; "update.mode" = "none";
"vim.useCtrlKeys" = false;
"window.restoreWindows" = "none";
"workbench.startupEditor" = "none";
"workbench.colorCustomizations" = {
"statusBar.background" = "#005f5f";
"statusBar.debuggingBackground" = "#005f5f";
"statusBar.noFolderBackground" = "#005f5f";
};
"vim.normalModeKeyBindings" = [ "vim.normalModeKeyBindings" = [
{ {
"after" = ["@q"]; "after" = ["@q"];
"before" = ["Q"]; "before" = ["Q"];
} }
]; ];
"vim.statusBarColorControl" = true;
"vim.useCtrlKeys" = false;
"window.restoreWindows" = "none";
"workbench.colorCustomizations" = {
"statusBar.background" = "#005f5f";
"statusBar.debuggingBackground" = "#005f5f";
"statusBar.noFolderBackground" = "#005f5f";
};
"workbench.startupEditor" = "none";
}; };
}; };
} }