Skip to content

Instantly share code, notes, and snippets.

@kuntashov
Created March 3, 2023 06:09
Show Gist options
  • Save kuntashov/adef84fa1961eacc851c0f59731d3b90 to your computer and use it in GitHub Desktop.
Save kuntashov/adef84fa1961eacc851c0f59731d3b90 to your computer and use it in GitHub Desktop.
Настройки для VSCode - красно-синяя раскраска кода для 1С
{
"editor.fontFamily": "'Fira Code', 'Consolas'",
"editor.fontSize": 18,
"editor.wordWrap": "wordWrapColumn",
"editor.rulers": [
80, 100, 120, 140
],
"editor.wordWrapColumn": 100,
"workbench.colorTheme": "Solarized Light",
"editor.tokenColorCustomizations": {
"textMateRules": [
{
"scope": "source.bsl",
"settings": {
"foreground": "#0000ff",
"fontStyle": ""
}
},
{
"scope": "meta.var-single-variable.bsl",
"settings": {
"foreground": "#0000ff",
"fontStyle": ""
}
},
{
"scope": "storage.type.bsl",
"settings": {
"foreground": "#FF0000",
"fontStyle": ""
}
},
{
"scope": "entity.name.function.bsl",
"settings": {
"foreground": "#0000ff",
"fontStyle": ""
}
},
{
"scope": "keyword.control.exception.bsl",
"settings": {
"foreground": "#FF0000",
"fontStyle": ""
}
},
{
"scope": "keyword.operator.bsl",
"settings": {
"foreground": "#FF0000",
"fontStyle": ""
}
},
{
"scope": "punctuation.bracket.begin.bsl",
"settings": {
"foreground": "#FF0000",
"fontStyle": ""
}
},
{
"scope": "punctuation.bracket.end.bsl",
"settings": {
"foreground": "#FF0000",
"fontStyle": ""
}
},
{
"scope": "string.quoted.double.bsl",
"settings": {
"foreground": "#000000",
"fontStyle": ""
}
},
{
"scope": "constant.numeric.bsl",
"settings": {
"foreground": "#000000",
"fontStyle": ""
}
},
{
"scope": "keyword.other.section.bsl",
"settings": {
"foreground": "#963200",
"fontStyle": ""
}
},
{
"scope": "keyword.control.repeat.bsl",
"settings": {
"foreground": "#FF0000",
"fontStyle": ""
}
},
{
"scope": "keyword.control.conditional.bsl",
"settings": {
"foreground": "#FF0000",
"fontStyle": ""
}
},
{
"scope": "keyword.operator.logical.bsl",
"settings": {
"foreground": "#FF0000",
"fontStyle": ""
}
},
{
"scope": "constant.language.bsl",
"settings": {
"foreground": "#FF0000",
"fontStyle": ""
}
},
{
"scope": "support.class.bsl",
"settings": {
"foreground": "#0000ff",
"fontStyle": ""
}
},
{
"scope": "storage.modifier.directive.bsl",
"settings": {
"foreground": "#963200",
"fontStyle": ""
}
},
{
"scope": "keyword.operator.assignment.bsl",
"settings": {
"foreground": "#FF0000",
"fontStyle": ""
}
},
{
"scope": "keyword.operator.comparison.bsl",
"settings": {
"foreground": "#FF0000",
"fontStyle": ""
}
},
]
},
"[bsl]": {
"editor.fontSize": 18,
"editor.wordWrap": "off",
"editor.rulers": [
100, 120, 140
],
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment