Skip to content

Instantly share code, notes, and snippets.

@shepelevstas
Created September 6, 2020 18:50
Show Gist options
  • Save shepelevstas/2b396e8cb9c86d64dd37e36249597231 to your computer and use it in GitHub Desktop.
Save shepelevstas/2b396e8cb9c86d64dd37e36249597231 to your computer and use it in GitHub Desktop.
vscode solarized dark custom adjustments
{
"workbench.settings.openDefaultSettings": false,
"workbench.settings.openDefaultKeybindings": true,
"editor.fontFamily": "menlo, dejavu sans code hinted, hackmen, jetbrains mono, fira code, consolas, hasklig, iosevka ss04, courier new",
"editor.fontLigatures": true,
"window.zoomLevel": -1,
"editor.fontSize": 17,
"editor.lineHeight": 26,
"terminal.integrated.fontSize": 17,
"editor.letterSpacing": -0.5,
"window.menuBarVisibility": "toggle",
"editor.glyphMargin": false,
"editor.overviewRulerBorder": false,
"editor.dragAndDrop": false,
"editor.renderLineHighlight": "all",
"editor.renderIndentGuides": true,
"editor.minimap.enabled": true,
"editor.minimap.renderCharacters": false,
"editor.cursorStyle": "line",
"files.trimTrailingWhitespace": true,
"editor.trimAutoWhitespace": false,
"workbench.startupEditor": "none",
"files.insertFinalNewline": true,
"editor.tabSize": 2,
"editor.insertSpaces": true,
"workbench.editor.labelFormat": "short",
"workbench.editor.tabCloseButton": "off",
"problems.decorations.enabled": false,
"editor.renderWhitespace": "selection",
"editor.acceptSuggestionOnEnter": "off",
"editor.acceptSuggestionOnCommitCharacter": false,
"search.followSymlinks": true,
"telemetry.enableTelemetry": false,
"editor.foldingStrategy": "indentation",
"editor.lightbulb.enabled": false,
"editor.links": false,
"editor.parameterHints.enabled": false,
"window.titleBarStyle": "custom",
"window.title": "${rootName}${separator}${activeEditorShort}${dirty}",
"editor.hover.enabled": false,
"javascript.suggestionActions.enabled": false,
"editor.wordWrap": "on",
"editor.matchBrackets": "near",
"editor.highlightActiveIndentGuide": true,
"workbench.iconTheme": "file-icons-mac",
"breadcrumbs.enabled": false,
"workbench.tree.renderIndentGuides": "none",
"highlight-matching-tag.showPath": false,
"highlight-matching-tag.highlightFromAttributes": false,
"highlight-matching-tag.styles": {
// "opening": {"name": {"highlight": "#ddf"}}
"opening": {"name": {"highlight": "#2aa19844"}}
},
"workbench.tree.indent": 12,
"explorer.autoReveal": false,
"editor.minimap.maxColumn": 60,
"editor.minimap.showSlider": "always",
"editor.occurrencesHighlight": false,
"git.confirmSync": false,
"update.mode": "manual",
"extensions.autoUpdate": false,
"editor.codeLens": false,
"workbench.colorTheme": "Solarized Dark",
"explorer.confirmDragAndDrop": false,
"workbench.list.openMode": "doubleClick",
"workbench.editor.enablePreview": false,
"workbench.sideBar.location": "right",
"python.showStartPage": false,
"workbench.colorCustomizations":{
"[Solarized Dark]":{
"window.activeBorder": "#113643",
"window.inactiveBorder": "#082b36",
"editor.background": "#082b36",
"editor.lineHighlightBackground": "#33ddff10",
"editor.selectionBackground": "#123A48",
"editor.snippetFinalTabstopHighlightBorder": "#586e75",
"editorGutter.background": "#113643",
"editorIndentGuide.background": "#103B46",
"editorIndentGuide.activeBackground": "#204B56",
"editorBracketMatch.border": "#305B66",
"editorLineNumber.foreground": "#576E75", // 576E75 406B76
"editorLineNumber.activeForeground": "#657b83",
"editorCursor.foreground": "#839592",
"editorWarning.foreground": "#b5890088",
"panel.border": "#103B46",
"panel.background": "#002b36",
"panelTitle.activeBorder": "#3D8CD4",
"activityBar.background": "#113643",
"activityBar.activeBorder": "#839592",
"activityBar.foreground": "#93a1a1",
"scrollbarSlider.background": "#586e7566",
"scrollbarSlider.hoverBackground": "#586e7588"
}
},
"editor.tokenColorCustomizations": {
"[Solarized Dark]": {
"textMateRules": [
{
"settings": {"foreground": "#859496"},
"scope":[
"source.elm"
]
},
{
"settings": {"foreground": "#6c71c4"},
"scope":[
"entity.name.function.js",
"constant.type-constructor.elm",
"constant.language.python",
]
},
{
"settings": {"foreground": "#C34902"},
"scope":[
"support.module.elm",
"variable.parameter.function-call.python",
]
},
{
"settings": {"foreground": "#CA3483"},
"scope":[
"keyword.other",
]
},
{
"settings": {"foreground": "#869900","fontStyle": ""},
"scope":[
"keyword",
"keyword.other.period.elm",
]
},
{
"settings": {"foreground": "#B18800","fontStyle": ""},
"scope":[
"storage",
"variable.language.special.self.python"
]
},
{
"settings": {"foreground": "#657b83","fontStyle": ""},
"scope":[
"punctuation.parens.module-export.elm",
"punctuation.separator.comma.elm",
"punctuation.section.braces.begin",
"punctuation.section.braces.end",
"punctuation.bracket.elm",
"punctuation.definition.list.elm",
"punctuation.parens.elm",
]
},
{
"settings": {"foreground": "#3D8CD4"},
"scope":[
"meta.function-call.generic.python"
]
},
{
"settings": {"foreground": "#42A198"},
"scope":[
]
},
{
"settings": {"fontStyle": "bold"},
"scope":[
"variable.language.this.js",
]
},
]
}
},
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment