aboutsummaryrefslogtreecommitdiff
path: root/.config
diff options
context:
space:
mode:
authorkj_sh6042025-10-06 22:29:41 -0400
committerkj_sh6042025-10-06 22:29:41 -0400
commit28057914cd371296151562ddc339930325c95895 (patch)
treee6d2de3a7c132c7c86f281b017ec35637561d75f /.config
parent0d920d82f3ba86525a818ad0f1dedc8d6aef8c70 (diff)
refactor: disable more font rendering in vscode
Diffstat (limited to '.config')
-rw-r--r--.config/Code/User/settings.json63
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