Skip to content

Instantly share code, notes, and snippets.

@odan
Last active June 4, 2026 07:41
Show Gist options
  • Select an option

  • Save odan/2cce08df2e4cdf7f84b2edfddeb9c21c to your computer and use it in GitHub Desktop.

Select an option

Save odan/2cce08df2e4cdf7f84b2edfddeb9c21c to your computer and use it in GitHub Desktop.
VSCode Setup
{
"editor.fontSize": 16,
"debug.console.fontSize": 16,
"security.workspace.trust.untrustedFiles": "open",
"editor.scrollbar.horizontalScrollbarSize": 14,
"extensions.ignoreRecommendations": true,
"explorer.confirmDelete": false,
"terminal.integrated.initialHint": false,
"explorer.confirmDragAndDrop": false,
"editor.fontFamily": "JetBrains Mono NL, Menlo, Monaco, 'Courier New', monospace",
"editor.fontLigatures": true,
"workbench.iconTheme": "jetbrains-file-icon-theme-auto",
"json.schemas": [],
"editor.wordWrap": "on",
"editor.inlayHints.enabled": "off",
"editor.rulers": [
120
],
"workbench.editor.empty.hint": "hidden",
"workbench.settings.applyToAllProfiles": [],
"workbench.colorCustomizations": {
"editor.background": "#ffffff", // main code background
},
"markdownConverter.Parser.Toc.Enabled": true,
"markdownConverter.Document.HeaderContent": {
"Left": "",
"Center": "",
"Right": ""
},
"markdownConverter.Document.FooterContent": {
"Right": "<span class=\"pageNumber\"></span>/<span class=\"totalPages\"></span>"
},
"git.confirmSync": false,
"git.enableSmartCommit": true,
"workbench.colorTheme": "GitHub Light Default",
"editor.semanticTokenColorCustomizations": {
"enabled": true,
"rules": {
"class": "#005cc5",
"interface": "#005cc5",
"type": "#005cc5",
"method": "#6f42c1",
"function": "#6f42c1",
"property": "#24292e",
"variable": "#24292e",
"parameter": "#24292e",
}
},
"editor.tokenColorCustomizations": {
"textMateRules": [
{
"scope": [
"keyword",
"storage"
],
"settings": {
"foreground": "#d73a49"
}
},
{
"scope": [
"string"
],
"settings": {
"foreground": "#22863a"
}
},
{
"scope": [
"constant.numeric"
],
"settings": {
"foreground": "#005cc5"
}
}
]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment