vscode: adjust snippet/quicksuggestions behavior

This commit is contained in:
John Bowdre 2024-04-30 11:17:17 -05:00
parent 46022b7300
commit 46c7b683a5

View file

@ -190,8 +190,14 @@
"editor.fontLigatures" = true;
"editor.inlineSuggest.enabled" = true;
"editor.lineNumbers" = "relative";
"editor.quickSuggestions" = {
"other" = true;
"comments" = false;
"strings" = true;
};
"editor.renderControlCharacters" = true;
"editor.renderWhitespace" = "all";
"editor.snippetSuggestions" = "top";
"editor.tabCompletion" = "off";
"editor.tabSize" = 2;
"explorer.confirmDragAndDrop" = false;
@ -228,6 +234,14 @@
"vim.useCtrlKeys" = false;
"window.restoreWindows" = "none";
"workbench.startupEditor" = "none";
"[markdown]" = {
"editor.defaultFormatter" = "yzhang.markdown-all-in-one";
"editor.quickSuggestions" = {
"other" = true;
"comments" = false;
"strings" = true;
};
};
};
};
}