diff options
| author | kj_sh604 | 2025-10-06 22:29:41 -0400 |
|---|---|---|
| committer | kj_sh604 | 2025-10-06 22:29:41 -0400 |
| commit | 28057914cd371296151562ddc339930325c95895 (patch) | |
| tree | e6d2de3a7c132c7c86f281b017ec35637561d75f /.config/Code/User/settings.json | |
| parent | 0d920d82f3ba86525a818ad0f1dedc8d6aef8c70 (diff) | |
refactor: disable more font rendering in vscode
Diffstat (limited to '.config/Code/User/settings.json')
| -rw-r--r-- | .config/Code/User/settings.json | 63 |
1 files changed, 63 insertions, 0 deletions
diff --git a/.config/Code/User/settings.json b/.config/Code/User/settings.json index 6932113..3060c7b 100644 --- a/.config/Code/User/settings.json +++ b/.config/Code/User/settings.json @@ -70,11 +70,74 @@ }, "*.italic": { "fontStyle": "" + }, + "*.underline": { + "fontStyle": "" + }, + "*.strikethrough": { + "fontStyle": "" + }, + "comment.bold": { + "fontStyle": "" + }, + "comment.italic": { + "fontStyle": "" + }, + "keyword.bold": { + "fontStyle": "" + }, + "keyword.italic": { + "fontStyle": "" + }, + "string.bold": { + "fontStyle": "" + }, + "string.italic": { + "fontStyle": "" + }, + "variable.bold": { + "fontStyle": "" + }, + "variable.italic": { + "fontStyle": "" + }, + "function.bold": { + "fontStyle": "" + }, + "function.italic": { + "fontStyle": "" + }, + "class.bold": { + "fontStyle": "" + }, + "class.italic": { + "fontStyle": "" + }, + "type.bold": { + "fontStyle": "" + }, + "type.italic": { + "fontStyle": "" } } }, "[markdown]": { "editor.fontWeight": "normal" }, + "editor.fontLigatures": false, + "editor.renderWhitespace": "none", + "editor.renderControlCharacters": false, + "editor.bracketPairColorization.enabled": false, + "editor.guides.bracketPairs": false, + "editor.guides.bracketPairsHorizontal": false, + "editor.guides.highlightActiveBracketPair": false, + "editor.guides.indentation": false, + "editor.inlayHints.enabled": "off", + "editor.colorDecorators": false, + "editor.lightbulb.enabled": "off", + "editor.glyphMargin": false, + "editor.folding": false, + "workbench.editor.decorations.colors": false, + "workbench.editor.decorations.badges": false, "chat.agent.maxRequests": 50, }
\ No newline at end of file |
