Last active
September 18, 2025 18:43
-
-
Save Auios/ac81c380ad40db2d3076174517155183 to your computer and use it in GitHub Desktop.
vscode settings
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"explorer.sortOrder": "default", | |
"explorer.confirmDelete": false, | |
"explorer.confirmDragAndDrop": false, | |
"workbench.iconTheme": "vscode-icons", | |
"editor.tabSize": 2, | |
"editor.insertSpaces": true, | |
"editor.detectIndentation": false, | |
"editor.largeFileOptimizations": true, | |
"editor.rulers": [ | |
80, | |
120 | |
], | |
// "editor.fontWeight": "normal", | |
"terminal.integrated.fontFamily": "VT323", | |
"editor.fontFamily": "VT323", | |
// "editor.fontFamily": "'Mx437 IBM VGA 9x16', monospace", | |
"editor.renderWhitespace": "all", | |
"editor.letterSpacing": 0.5, | |
"editor.lineHeight": 1, | |
"editor.fontSize": 16, | |
"terminal.integrated.fontSize": 16, | |
"editor.tokenColorCustomizations": { | |
"textMateRules": [ | |
{ | |
"scope": "string.quoted", | |
"settings": { | |
"foreground": "#ff8e8e" | |
} | |
} | |
] | |
}, | |
"[jsonc]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"cursor.composer.shouldChimeAfterChatFinishes": true, | |
"cursor.general.disableHttp2": true, | |
"cursor.chat.terminalShowHoverHint": false, | |
"makefile.configureOnOpen": false, | |
"explorer.confirmPasteNative": false, | |
"debug.onTaskErrors": "debugAnyway", | |
"git.autofetch": true, | |
"git.openRepositoryInParentFolders": "never", | |
"git.blame.editorDecoration.enabled": true, | |
"git.blame.statusBarItem.enabled": false, | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment