Skip to content

Instantly share code, notes, and snippets.

@ysl2
Last active May 22, 2026 10:29
Show Gist options
  • Select an option

  • Save ysl2/0dc623a10eb4cba20c2f9cb402c4645f to your computer and use it in GitHub Desktop.

Select an option

Save ysl2/0dc623a10eb4cba20c2f9cb402c4645f to your computer and use it in GitHub Desktop.
vscode settings.json
{
"editor.fontSize": 15,
"workbench.editor.empty.hint": "hidden",
"editor.tabSize": 4,
"editor.insertSpaces": true,
"editor.detectIndentation": false,
"editor.autoIndent": "full",
"workbench.colorCustomizations": {
"editor.foreground": "#000000",
"[*Dark*]": {
"editor.foreground": "#ffffff"
}
},
"editor.semanticHighlighting.enabled": false,
"[python]": {
"editor.semanticHighlighting.enabled": false
},
"editor.semanticTokenColorCustomizations": {
"enabled": false,
"rules": {
"*": {
"foreground": "#000000",
"fontStyle": ""
},
"class": {
"foreground": "#000000",
"fontStyle": ""
},
"type": {
"foreground": "#000000",
"fontStyle": ""
},
"type.defaultLibrary": {
"foreground": "#000000",
"fontStyle": ""
}
},
"[*Dark*]": {
"rules": {
"*": {
"foreground": "#ffffff",
"fontStyle": ""
},
"class": {
"foreground": "#ffffff",
"fontStyle": ""
},
"type": {
"foreground": "#ffffff",
"fontStyle": ""
},
"type.defaultLibrary": {
"foreground": "#ffffff",
"fontStyle": ""
}
}
}
},
"editor.tokenColorCustomizations": {
"comments": "#000000",
"strings": "#000000",
"keywords": "#000000",
"numbers": "#000000",
"types": "#000000",
"functions": "#000000",
"variables": "#000000",
"[*Dark*]": {
"comments": "#ffffff",
"strings": "#ffffff",
"keywords": "#ffffff",
"numbers": "#ffffff",
"types": "#ffffff",
"functions": "#ffffff",
"variables": "#ffffff",
"textMateRules": [
{
"scope": [
"meta.format.brace.python",
"constant.character.format.placeholder.other.python",
"storage.type.format.python",
"invalid.illegal.brace.python"
],
"settings": {
"foreground": "#ffffff",
"fontStyle": ""
}
},
{
"scope": [
"keyword.operator.logical.python",
"keyword.operator.word.python",
"keyword.operator.python",
"keyword.operator",
"keyword.operator.logical",
"keyword.operator.word"
],
"settings": {
"foreground": "#ffffff",
"fontStyle": ""
}
},
{
"scope": [
"comment",
"comment.line",
"comment.block",
"string",
"string.quoted",
"string.quoted.single",
"string.quoted.double",
"string.quoted.triple",
"string.interpolated",
"constant.character.escape",
"constant",
"constant.numeric",
"constant.language",
"constant.other",
"keyword",
"keyword.control",
"keyword.control.import",
"keyword.control.flow",
"keyword.operator",
"keyword.other",
"storage",
"storage.type",
"storage.modifier",
"entity",
"entity.name",
"entity.name.function",
"entity.name.type",
"entity.name.class",
"entity.other.inherited-class",
"entity.other.inherited-class.python",
"support",
"support.function",
"support.type",
"support.class",
"support.constant",
"variable",
"variable.other",
"variable.parameter",
"variable.language",
"punctuation",
"punctuation.definition",
"punctuation.separator",
"punctuation.terminator",
"meta",
"meta.function",
"meta.class",
"meta.import",
"meta.parameters",
"invalid"
],
"settings": {
"foreground": "#ffffff",
"fontStyle": ""
}
},
{
"scope": [
"entity.other.inherited-class",
"entity.other.inherited-class.python",
"meta.class.python entity.other.inherited-class.python"
],
"settings": {
"foreground": "#ffffff",
"fontStyle": ""
}
},
{
"scope": [
"variable.parameter.function.python",
"variable.parameter.function.language.python",
"variable.parameter.function.language.special.python",
"variable.parameter.function.language.special.self.python",
"variable.parameter.function.language.special.cls.python",
"variable.language.special.self.python",
"variable.language.special.cls.python",
"meta.function.parameters.python variable.parameter",
"meta.function.parameters.python variable.parameter.function.python",
"meta.function.python variable.parameter",
"meta.function.python variable.parameter.function.python"
],
"settings": {
"foreground": "#ffffff",
"fontStyle": ""
}
}
]
},
"textMateRules": [
{
"scope": [
"meta.format.brace.python",
"constant.character.format.placeholder.other.python",
"storage.type.format.python",
"invalid.illegal.brace.python"
],
"settings": {
"foreground": "#000000",
"fontStyle": ""
}
},
{
"scope": [
"keyword.operator.logical.python",
"keyword.operator.word.python",
"keyword.operator.python",
"keyword.operator",
"keyword.operator.logical",
"keyword.operator.word"
],
"settings": {
"foreground": "#000000",
"fontStyle": ""
}
},
{
"scope": [
"comment",
"comment.line",
"comment.block",
"string",
"string.quoted",
"string.quoted.single",
"string.quoted.double",
"string.quoted.triple",
"string.interpolated",
"constant.character.escape",
"constant",
"constant.numeric",
"constant.language",
"constant.other",
"keyword",
"keyword.control",
"keyword.control.import",
"keyword.control.flow",
"keyword.operator",
"keyword.other",
"storage",
"storage.type",
"storage.modifier",
"entity",
"entity.name",
"entity.name.function",
"entity.name.type",
"entity.name.class",
"entity.other.inherited-class",
"entity.other.inherited-class.python",
"support",
"support.function",
"support.type",
"support.class",
"support.constant",
"variable",
"variable.other",
"variable.parameter",
"variable.language",
"punctuation",
"punctuation.definition",
"punctuation.separator",
"punctuation.terminator",
"meta",
"meta.function",
"meta.class",
"meta.import",
"meta.parameters",
"invalid"
],
"settings": {
"foreground": "#000000",
"fontStyle": ""
}
},
{
"scope": [
"entity.other.inherited-class",
"entity.other.inherited-class.python",
"meta.class.python entity.other.inherited-class.python"
],
"settings": {
"foreground": "#000000",
"fontStyle": ""
}
},
{
"scope": [
"variable.parameter.function.python",
"variable.parameter.function.language.python",
"variable.parameter.function.language.special.python",
"variable.parameter.function.language.special.self.python",
"variable.parameter.function.language.special.cls.python",
"variable.language.special.self.python",
"variable.language.special.cls.python",
"meta.function.parameters.python variable.parameter",
"meta.function.parameters.python variable.parameter.function.python",
"meta.function.python variable.parameter",
"meta.function.python variable.parameter.function.python"
],
"settings": {
"foreground": "#000000",
"fontStyle": ""
}
}
]
},
"editor.matchBrackets": "never",
"editor.bracketPairColorization.enabled": false,
"editor.guides.bracketPairs": false,
"editor.guides.bracketPairsHorizontal": false,
"editor.guides.highlightActiveBracketPair": false,
"editor.guides.indentation": false,
"editor.guides.highlightActiveIndentation": false,
"editor.autoClosingBrackets": "never",
"editor.autoClosingQuotes": "never",
"editor.autoSurround": "never",
"editor.quickSuggestions": {
"comments": "off",
"strings": "off",
"other": "off"
},
"editor.suggestOnTriggerCharacters": false,
"editor.inlineSuggest.enabled": false,
"editor.inlineSuggest.syntaxHighlightingEnabled": false,
"editor.parameterHints.enabled": false,
"editor.hover.enabled": "off",
"editor.wordBasedSuggestions": "off",
"editor.acceptSuggestionOnEnter": "off",
"editor.acceptSuggestionOnCommitCharacter": false,
"editor.snippetSuggestions": "none",
"editor.tabCompletion": "off",
"editor.lightbulb.enabled": "off",
"editor.codeActionsOnSave": {},
"editor.inlayHints.enabled": "off",
"editor.codeLens": false,
"editor.links": false,
"editor.colorDecorators": false,
"editor.stickyScroll.enabled": false,
"editor.formatOnSave": false,
"editor.formatOnPaste": false,
"editor.formatOnType": false,
"editor.selectionHighlight": false,
"editor.occurrencesHighlight": "off",
"editor.renderLineHighlight": "none",
"editor.minimap.enabled": false,
"editor.folding": false,
"editor.showFoldingControls": "never",
"editor.glyphMargin": false,
"editor.renderWhitespace": "none",
"breadcrumbs.enabled": false,
"extensions.ignoreRecommendations": true,
"workbench.startupEditor": "none",
"files.trimTrailingWhitespace": true,
"files.trimFinalNewlines": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment