Thanks to visit codestin.com
Credit goes to gist.github.com

Skip to content

Instantly share code, notes, and snippets.

@Auios
Last active September 18, 2025 18:43
Show Gist options
  • Save Auios/ac81c380ad40db2d3076174517155183 to your computer and use it in GitHub Desktop.
Save Auios/ac81c380ad40db2d3076174517155183 to your computer and use it in GitHub Desktop.
vscode settings
{
"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