Guest User

Untitled

a guest
Sep 21st, 2020
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 7.30 KB | None | 0 0
  1. "workbench.colorTheme": "Abyss",
  2.     "workbench.iconTheme": "ayu",
  3.     "workbench.settings.editor": "json",
  4.     "workbench.settings.openDefaultSettings": true,
  5.     "workbench.editor.enablePreview": false,
  6.     "workbench.editor.enablePreviewFromQuickOpen": false,
  7.     "python.pythonPath": "c:\\path_to_python",
  8.     "python.formatting.provider": "autopep8",
  9.     "terminal.integrated.rendererType": "dom",
  10.     "code-runner.executorMap": {
  11.         "python": "$pythonPath -u $fullFileName"
  12.     },
  13.     "editor.tokenColorCustomizations": {
  14.         "[Abyss]": {
  15.             "textMateRules": [
  16.                 /*
  17.                     Saved Color Codes
  18.                     "#444fff" "#1944ff" "#44c4ff"
  19.                 */
  20.                 /*
  21.                     HTML Syntax Highlighting Changes
  22.                 */
  23.                 {
  24.                     "scope": "text.html.derivative",
  25.                     "settings": { "foreground": "#7476e6" }
  26.                 },
  27.                 {
  28.                     "scope": "comment.block.html",
  29.                     "settings": { "foreground": "#888888" }
  30.                 },
  31.                 {
  32.                     "scope": "entity.other.attribute-name.html",
  33.                     "settings": { "fontStyle": "italic", "foreground": "#ffd000" }
  34.                 },
  35.                 {
  36.                     "scope": "punctuation.separator.key-value.html",
  37.                     "settings": { "fontStyle": "italic bold", "foreground": "#ffd000" }
  38.                 },
  39.                 {
  40.                     "scope": "punctuation.definition.tag.begin.html",
  41.                     "settings": { "foreground": "#b30303" }
  42.                 },
  43.                 {
  44.                     "scope": "punctuation.definition.tag.end.html",
  45.                     "settings": { "foreground": "#b30303" }
  46.                 },
  47.                 {
  48.                     "scope": "entity.name.tag.html",
  49.                     "settings": { "foreground": "#ce713c" }
  50.                 },
  51.                 {
  52.                     "scope": "string.quoted.double.html",
  53.                     "settings": { "fontStyle": "", "foreground": "#22aa44" }
  54.                 },
  55.                 {
  56.                     "scope": "string.quoted.single.html",
  57.                     "settings": { "fontStyle": "", "foreground": "#22aa44"}
  58.                 },
  59.                 /*
  60.                     Jinja Syntax Highlighting Changes
  61.                 */
  62.                 {
  63.                     "scope": "keyword.control.jinja",
  64.                     "settings": { "fontStyle": "", "foreground": "#8735ca" }
  65.                 },
  66.                 {
  67.                     "scope": "entity.other.jinja.delimiter.tag",
  68.                     "settings": { "fontStyle": "", "foreground": "#3550ca" }
  69.                 },
  70.                 {
  71.                     "scope": "entity.other.jinja.delimiter.variable",
  72.                     "settings": { "fontStyle": "", "foreground": "#3550ca" }
  73.                 },
  74.                 {
  75.                     "scope": "punctuation.other.jinja",
  76.                     "settings": { "fontStyle": "underline", "foreground": "#bcbdfd" }
  77.                 },
  78.                 {
  79.                     "scope": "variable.other.jinja",
  80.                     "settings": { "fontStyle": "underline", "foreground": "#7476e6" }
  81.                 },
  82.                 {
  83.                     "scope": "string.quoted.double.jinja",
  84.                     "settings": { "fontStyle": "", "foreground": "#22aa44" }
  85.                 },
  86.                 {
  87.                     "scope": "string.quoted.single.jinja",
  88.                     "settings": { "fontStyle": "", "foreground": "#22aa44"}
  89.                 },
  90.                 {
  91.                     "scope": "text.html.jinja",
  92.                     "settings": { "fontStyle": "bold", "foreground": "#f7e8c9" }
  93.                 },
  94.                 /*
  95.                     Python Syntax Highlighting Changes
  96.                 */
  97.                 {
  98.                     "scope": "support.function.builtin.python",
  99.                     "settings": { "fontStyle": "underline italic", "foreground": "#d320bb" }
  100.                 },
  101.                 {
  102.                     "scope": "meta.function-call.generic.python",
  103.                     "settings": { "foreground": "#444fff" }
  104.                 },
  105.                 {
  106.                     "scope": "meta.attribute.python",
  107.                     "settings": { "foreground": "#9470f7" }
  108.                 },
  109.                 {
  110.                     "scope": "meta.indexed-name.python",
  111.                     "settings": { "foreground":  "#0f8694" }
  112.                 },
  113.                 {
  114.                     "scope": "constant.language.python",
  115.                     "settings": { "foreground": "#d3931e" }
  116.                 },
  117.                 {
  118.                     "scope": "constant.other.caps.python",
  119.                     "settings": { "foreground": "#b36595" }
  120.                 },
  121.                 {
  122.                     "scope": [
  123.                         "constant.numeric.dec.python",
  124.                         "constant.numeric.hex.python",
  125.                         "constant.numeric.float.python",
  126.                         "constant.numeric.integer.python",
  127.                     ],
  128.                     "settings": { "foreground": "#cc2c2c"}
  129.                 },
  130.                 {
  131.                     "scope": "meta.item-access.arguments.python",
  132.                     "settings": { "foreground": "#aa5454" }
  133.                 },
  134.                 {
  135.                     "scope": [
  136.                         "punctuation.separator.period.python",
  137.                         "punctuation.separator.colon.python",
  138.                         "punctuation.parenthesis.begin.python",
  139.                         "punctuation.parenthesis.end.python",
  140.                         "punctuation.separator.element.python",
  141.                         "punctuation.separator.arguments.python",
  142.                         "punctuation.separator.dict.python",
  143.                         "punctuation.separator.continuation",
  144.                        
  145.                         "punctuation.definition.arguments.begin.python",
  146.                         "punctuation.definition.arguments.end.python",
  147.                         "punctuation.definition.parameters.begin.python",
  148.                         "punctuation.definition.parameters.end.python",
  149.  
  150.                         "punctuation.definition.list.end.python",
  151.                         "punctuation.definition.list.begin.python",
  152.                         "punctuation.definition.list.end.python",
  153.                         "punctuation.definition.dict.begin.python",
  154.                         "punctuation.definition.dict.end.python",
  155.  
  156.                         "punctuation.section.function.begin.python",
  157.                         "punctuation.section.class.begin.python",
  158.                         "punctuation.definition.inheritance.begin.python",
  159.                         "punctuation.definition.inheritance.end.python",
  160.                     ],
  161.                     "settings": { "foreground": "#22aeff" }
  162.                 },
  163.             ]
  164.         }
  165.     },
  166.     "code-runner.clearPreviousOutput": true,
  167.     "code-runner.showExecutionMessage": true,
  168.     "code-runner.runInTerminal": true,
  169.     "terminal.integrated.shell.windows": "C:\\Program Files\\Git\\bin\\bash.exe",
  170.     "window.zoomLevel": 0,
  171.     "[jinja-html]": {
  172.        
  173.     },
  174. }
Advertisement
Add Comment
Please, Sign In to add comment