Skip to content

Instantly share code, notes, and snippets.

@sebastienguillon
Last active July 30, 2025 09:46
Show Gist options
  • Select an option

  • Save sebastienguillon/e86d85fe87c204bf6aa33272cd046c0c to your computer and use it in GitHub Desktop.

Select an option

Save sebastienguillon/e86d85fe87c204bf6aa33272cd046c0c to your computer and use it in GitHub Desktop.
Visual Studio Code configuration

Visual Studio Code configuration

  • User settings
  • Modified syntax theme
  • Snippets

List of extensions

  • Atom One Dark (Sublime Babel) joshpeng.theme-onedark-sublime
  • ESLint dbaeumer.vscode-eslint
  • file-icons file-icons.file-icons
  • open in browser techer.open-in-browser
  • Project Manager alefragnani.project-manager
  • TSLint eg2.tslint
  • vscode-pandoc DougFinke.vscode-pandoc

Edit Theme

Extensions folder

  • Windows %USERPROFILE%\.vscode\extensions
  • macOS ~/.vscode/extensions
  • Linux ~/.vscode/extensions
/*
// Place your snippets for HTML here. Each snippet is defined under a snippet name and has a prefix, body and
// description. The prefix is what is used to trigger the snippet and the body will be expanded and inserted. Possible variables are:
// $1, $2 for tab stops, $0 for the final cursor position, and ${1:label}, ${2:another} for placeholders. Placeholders with the
// same ids are connected.
// Example:
"Print to console": {
"prefix": "log",
"body": [
"console.log('$1');",
"$2"
],
"description": "Log output to console"
}
*/
{
"HTML mini": {
"prefix": "html mini",
"description": "Minimal HTML5 template with UTF-8 charset & viewport Meta",
"body": [
"<!doctype html>",
"<html>",
" <head>",
" <meta charset=\"utf-8\">",
" <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">",
" <title>Document</title>",
" </head>",
" <body>",
"$0",
" </body>",
"</html>"
]
},
"HTML full": {
"prefix": "html full",
"description": "Full HTML5 template with UTF-8 charset, viewport Meta and commented script and stylesheet link tags",
"body": [
"<!doctype html>",
"<html lang=\"en\">",
" <head>",
" <meta charset=\"utf-8\">",
" <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">",
" <meta http-equiv=\"X-UA-Compatible\" content=\"ie=edge\">",
" <title>Document</title>",
" <!--<link rel=\"stylesheet\" href=\"./css/styles.css\">-->",
" <!--<script src=\"./js/index.js\"></script>-->",
" </head>",
" <body>",
"$0",
" </body>",
"</html>"
]
},
"HTML JS": {
"prefix": "html js",
"description": "Full HTML5 template with JavaScript 'DOMContentLoaded' event handler",
"body": [
"<!doctype html>",
"<html lang=\"en\">",
" <head>",
" <meta charset=\"utf-8\">",
" <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">",
" <meta http-equiv=\"X-UA-Compatible\" content=\"ie=edge\">",
" <title>Document</title>",
" <!--<link rel=\"stylesheet\" href=\"./css/styles.css\">-->",
" <!--<script src=\"./js/index.js\"></script>-->",
" <script>",
" (function() {",
" 'use strict';",
"",
" window.addEventListener('DOMContentLoaded', function() {",
" console.log('DOMContentLoaded event fired');",
" $0",
" });",
"",
" }()); // IIFE (Crockford-style)",
" </script>",
" </head>",
" <body>",
"",
" </body>",
"</html>"
]
},
"HTML jQuery": {
"prefix": "html jQuery",
"description": "HTML5 template with jQuery CDN",
"body": [
"<!doctype html>",
"<html lang=\"en\">",
" <head>",
" <meta charset=\"utf-8\">",
" <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">",
" <meta http-equiv=\"X-UA-Compatible\" content=\"ie=edge\">",
" <title>Document</title>",
" <script src=\"https://code.jquery.com/jquery-3.2.1.min.js\" integrity=\"sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4=\" crossorigin=\"anonymous\"></script>",
" <script>",
" $(document).ready(function() {",
" console.log('jQuery is ready');",
" $0",
" });",
" </script>",
" </head>",
" <body>",
"",
" </body>",
"</html>"
]
},
"Lorem ipsum": {
"prefix": "lorem",
"description": "Lorem ipsum",
"body": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."
}
}
{
/*
// Place your snippets for JavaScript here. Each snippet is defined under a snippet name and has a prefix, body and
// description. The prefix is what is used to trigger the snippet and the body will be expanded and inserted. Possible variables are:
// $1, $2 for tab stops, $0 for the final cursor position, and ${1:label}, ${2:another} for placeholders. Placeholders with the
// same ids are connected.
// Example:
"Print to console": {
"prefix": "log",
"body": [
"console.log('$1');",
"$2"
],
"description": "Log output to console"
}
*/
"Print to console": {
"prefix": "log",
"description": "Log output to console",
"body": [
"console.log('$1');",
"$2"
]
},
"IIFE (Crockford-style)": {
"prefix": "IIFE",
"description": "Crockford-style Immediately Invoked Function Expression",
"body": [
"'use strict';",
"",
"(function() {",
" $0",
"}()); // IIFE (Crockford-style)"
]
}
}
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>name</key>
<string>One Dark+</string>
<key>author</key>
<string>Josh Peng</string>
<key>settings</key>
<array>
<dict>
<key>settings</key>
<dict>
<key>background</key>
<string>#142020</string>
<key>caret</key>
<string>#F8F8F0</string>
<key>foreground</key>
<string>#ABB2BF</string>
<key>invisibles</key>
<string>#383C44</string>
<key>lineHighlight</key>
<string>#23262D</string>
<key>selection</key>
<string>#3D4148</string>
<key>findHighlight</key>
<string>#405054</string>
<key>findHighlightForeground</key>
<string>#000000</string>
<key>selectionBorder</key>
<string>#222218</string>
<key>activeGuide</key>
<string>#9D550FB0</string>
<key>linkForeground</key>
<string>#C678DD</string>
<key>bracketsForeground</key>
<string>#F8F8F2A5</string>
<key>bracketsOptions</key>
<string>underline</string>
<key>bracketContentsForeground</key>
<string>#F8F8F2A5</string>
<key>bracketContentsOptions</key>
<string>underline</string>
<key>tagsOptions</key>
<string>stippled_underline</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Comments</string>
<key>scope</key>
<string>comment, punctuation.definition.comment</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#5C6370</string>
<key>fontStyle</key>
<string>italic</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Python Docstring</string>
<key>scope</key>
<string>string.quoted.docstring.multi.python, string.quoted.docstring.multi.python keyword.control.flow.python</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#5C6370</string>
<key>fontStyle</key>
<string>italic</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Brackets</string>
<key>scope</key>
<string>meta.brace.round.begin, meta.brace.round.end, meta.brace.square.begin, meta.brace.square.end, meta.brace.curly.begin.js, meta.brace.curly.end.js, meta.group.braces.round.function.arguments</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#ABB2BF</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>String</string>
<key>scope</key>
<string>string</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#98C379</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Regex String</string>
<key>scope</key>
<string>string.regexp</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#98C379</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>String URLs</string>
<key>scope</key>
<string>string.detected-link</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#C678DD</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Numbers and Built-in Constants</string>
<key>scope</key>
<string>constant.numeric, constant.language, markdown.python.constant.numeric</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#D19A66</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>User-defined constant</string>
<key>scope</key>
<string>constant.character</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#56B6C2</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Regex Character</string>
<key>scope</key>
<string>constant.character.escape.backslash.regexp</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#98C379</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Python Constant</string>
<key>scope</key>
<string>constant.character.format.placeholder.other.python</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#D19A66</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>User-defined Key Names</string>
<key>scope</key>
<string>constant.other.key, meta.group.braces.curly constant.other.object.key.js string.unquoted.label.js</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#56B6C2</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Object</string>
<key>scope</key>
<string>variable.other.object</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#E06C75</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Object Property</string>
<key>scope</key>
<string>meta.property.object.js</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#D19A66</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Classes</string>
<key>scope</key>
<string>variable.other.class, meta.class.property variable.other.property</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#E06C75</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Class Properties</string>
<key>scope</key>
<string>variable.other, meta.class.object.property.js, meta.property.class variable.other.property.static</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#D19A66</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>User-defined constant</string>
<key>scope</key>
<string>variable.other.readwrite</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#ABB2BF</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>User-defined constant</string>
<key>scope</key>
<string>meta.group.braces variable.other.readwrite</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#ABB2BF</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Language</string>
<key>scope</key>
<string>variable.language, meta.class variable.other.readwrite</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#E06C75</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Language Prototype</string>
<key>scope</key>
<string>variable.language.prototype</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#E06C75</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Python Magic Variable</string>
<key>scope</key>
<string>python.support.magic.variable</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#E06C75</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Function</string>
<key>scope</key>
<string>variable.function, entity.name.function, entity.name.function.arrow, meta.class-method.js entity.name.function.js, meta.method.property.js entity.name.function.js</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#61AFEF</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Python Function</string>
<key>scope</key>
<string>meta.function-call.generic.python</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#61AFEF</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Python @ Function Decorator</string>
<key>scope</key>
<string>meta.function.decorator.python</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#56B6C2</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Function Constructor</string>
<key>scope</key>
<string>variable.function.constructor</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#E5C07B</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Keyword (new, if, return)</string>
<key>scope</key>
<string>keyword.control, keyword.operator.new, keyword.operator.module, variable.language.super</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#C678DD</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>C# Preprocessor</string>
<key>scope</key>
<string>meta.preprocessor, entity.name.function.preprocessor</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#C678DD</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>C# Preprocessor</string>
<key>scope</key>
<string>entity.name.function.preprocessor</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#E5C07B</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>C# Namespace</string>
<key>scope</key>
<string>meta.namespace.identifier entity.name.type, entity.name.variable</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#E5C07B</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>C# Class Method</string>
<key>scope</key>
<string>cs.meta.namespace.function.identifier.body.class.method</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#61AFEF</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>C# Storage Type</string>
<key>scope</key>
<string>storage.type.cs, storage.type.variable.cs</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#56B6C2</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>C# Keyword</string>
<key>scope</key>
<string>keyword, keyword.other.namespace, storage.modifier</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#C678DD</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Python Keyword Operator Logical</string>
<key>scope</key>
<string>keyword.operator.logical.python</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#C678DD</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Substitution Punctuation</string>
<key>scope</key>
<string>keyword.other.substitution.begin, keyword.other.substitution.end</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#56B6C2</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Operator Accessor (.)</string>
<key>scope</key>
<string>keyword.operator.accessor</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#ABB2BF</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Operator</string>
<key>scope</key>
<string>keyword.operator, constant.other.color, punctuation.separator.key-value</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#56B6C2</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Regexp Keyword/Operator</string>
<key>scope</key>
<string>keyword.regexp, keyword.operator.quantifier.regexp, keyword.operator.or.regexp, keyword.control.anchor.regexp</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#98C379</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Python Operator</string>
<key>scope</key>
<string>python.keyword.operator</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#56B6C2</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Storage type</string>
<key>scope</key>
<string>storage.type</string>
<key>settings</key>
<dict>
<key>fontStyle</key>
<string/>
<key>foreground</key>
<string>#C678DD</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Class name</string>
<key>scope</key>
<string>entity.name.class, meta.class.extends variable.other.readwrite</string>
<key>settings</key>
<dict>
<key>fontStyle</key>
<string/>
<key>foreground</key>
<string>#E5C07B</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Inherited class</string>
<key>scope</key>
<string>entity.other.inherited-class</string>
<key>settings</key>
<dict>
<key>fontStyle</key>
<string>italic underline</string>
<key>foreground</key>
<string>#E5C07B</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Function argument</string>
<key>scope</key>
<string>variable.parameter</string>
<key>settings</key>
<dict>
<key>fontStyle</key>
<string/>
<key>foreground</key>
<string>#ABB2BF</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Python Function argument</string>
<key>scope</key>
<string>variable.parameter.function.language.python</string>
<key>settings</key>
<dict>
<key>fontStyle</key>
<string/>
<key>foreground</key>
<string>#D19A66</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Tag name</string>
<key>scope</key>
<string>entity.name.tag</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#E06C75</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Tag attribute</string>
<key>scope</key>
<string>entity.other.attribute-name.html, entity.other.attribute-name.js, entity.other.attribute-name.jsx</string>
<key>settings</key>
<dict>
<key>fontStyle</key>
<string>italic</string>
<key>foreground</key>
<string>#D19A66</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>CSS Selector</string>
<key>scope</key>
<string>selector.css.entity.other.attribute-name</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#E5C07B</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Library function</string>
<key>scope</key>
<string>support.function, support.class support.function</string>
<key>settings</key>
<dict>
<key>fontStyle</key>
<string/>
<key>foreground</key>
<string>#56B6C2</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Python support function</string>
<key>scope</key>
<string>python.builtin.support.function</string>
<key>settings</key>
<dict>
<key>fontStyle</key>
<string/>
<key>foreground</key>
<string>#C678DD</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Python function</string>
<key>scope</key>
<string>python.meta.function-call.builtin.support.function, python.meta.type.support.function-call, python.meta.variable.function-call.legacy.builtin</string>
<key>settings</key>
<dict>
<key>fontStyle</key>
<string/>
<key>foreground</key>
<string>#E5C07B</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Python inheritance</string>
<key>scope</key>
<string>meta.type.support.inheritance.python</string>
<key>settings</key>
<dict>
<key>fontStyle</key>
<string/>
<key>foreground</key>
<string>#56B6C2</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Python Entity Name Type</string>
<key>scope</key>
<string>entity.name.type.class.python</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#E5C07B</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Library constant</string>
<key>scope</key>
<string>support.constant</string>
<key>settings</key>
<dict>
<key>fontStyle</key>
<string/>
<key>foreground</key>
<string>#D19A66</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Library class/type</string>
<key>scope</key>
<string>support.type, support.class</string>
<key>settings</key>
<dict>
<key>fontStyle</key>
<string/>
<key>foreground</key>
<string>#E5C07B</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Library variable</string>
<key>scope</key>
<string>support.other.variable</string>
<key>settings</key>
<dict>
<key>fontStyle</key>
<string/>
</dict>
</dict>
<dict>
<key>name</key>
<string>CSS property/constant</string>
<key>scope</key>
<string>css.property-list.property-name</string>
<key>settings</key>
<dict>
<key>fontStyle</key>
<string/>
<key>foreground</key>
<string>#56B6C2</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Invalid</string>
<key>scope</key>
<string>invalid</string>
<key>settings</key>
<dict>
<key>background</key>
<string>#E05252</string>
<key>foreground</key>
<string>#FFFFFF</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Invalid deprecated</string>
<key>scope</key>
<string>invalid.deprecated</string>
<key>settings</key>
<dict>
<key>background</key>
<string>#E0C285</string>
<key>foreground</key>
<string>#523D14</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>JSON Property</string>
<key>scope</key>
<string>meta.structure.dictionary.json support.type.property-name</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#E06C75</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>JSON String</string>
<key>scope</key>
<string>meta.structure.dictionary.json string.quoted.double.json</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#98C379</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>JSON Links</string>
<key>scope</key>
<string>meta.structure.dictionary.json string.quoted.double.detected-link</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#C678DD</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Markdown Headings</string>
<key>scope</key>
<string>markup.heading</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#E06C75</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Markdown Link Description, GitHub KBD</string>
<key>scope</key>
<string>string.other.link.title.markdown, string.other.link.description.markdown, meta.paragraph.markdown entity.name.tag.inline.any</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#61AFEF</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Markdown Links/Images</string>
<key>scope</key>
<string>markup.underline.link.markdown, markup.underline.link.image.markdown</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#C678DD</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Markdown Bold</string>
<key>scope</key>
<string>markup.bold.markdown</string>
<key>settings</key>
<dict>
<key>fontStyle</key>
<string>bold</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Markdown Code (fenced.code for legacy, fenced_code for vsc1.9)</string>
<key>scope</key>
<string>markup.fenced_code.block.markdown, markup.fenced.code.block.markdown, markup.raw.inline.markdown, markdown.block.raw</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#56B6C2</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Markdown Code Language (fenced.code for legacy, fenced_code for vsc1.9)</string>
<key>scope</key>
<string>markup.fenced_code.block.markdown fenced_code.block.language, markup.fenced.code.block.markdown fenced.code.block.language</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#D19A66</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Markdown Punctuation</string>
<key>scope</key>
<string>punctuation.definition.string.begin.markdown, punctuation.definition.string.end.markdown, punctuation.definition.metadata.markdown, punctuation.definition.markdown, beginning.punctuation.definition.quote.markdown, punctuation.definition.raw.markdown, meta.paragraph.markdown punctuation.definition.tag</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#56B6C2</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Markdown Numbers and Constants</string>
<key>scope</key>
<string>markdown.fenced_code.block.markdown constant.numeric, markdown.fenced.code.block.markdown constant.numeric, markdown.fenced_code.block.markdown constant.language, markdown.fenced.code.block.markdown constant.language</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#D19A66</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Markdown String</string>
<key>scope</key>
<string>markdown.block.fenced.code.string, markdown.block.fenced.code.string.quote</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#98C379</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Markdown Keyword</string>
<key>scope</key>
<string>markup.fenced_code.block.markdown keyword.operator, markup.fenced_code.block.markdown keyword.operator.logical.python, markup.fenced.code.block.markdown keyword.operator, markup.fenced_code.block.markdown keyword.control, markup.fenced.code.block.markdown keyword.control, markup.fenced_code.block.markdown storage.type, markup.fenced_code.block.markdown storage.type.function.lambda, markdown.block.fenced.code.lambda.storage.type</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#61AFEF</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Markdown Assignment</string>
<key>scope</key>
<string>markdown.block.fenced.code.operator.assignment</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#ABB2BF</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>Markdown Variable Parameter</string>
<key>scope</key>
<string>markdown.block.variable.parameter</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#D19A66</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>diff.header</string>
<key>scope</key>
<string>meta.diff, meta.diff.header</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#75715E</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>diff.deleted</string>
<key>scope</key>
<string>markup.deleted</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#F92672</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>diff.inserted</string>
<key>scope</key>
<string>markup.inserted</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#A6E22E</string>
</dict>
</dict>
<dict>
<key>name</key>
<string>diff.changed</string>
<key>scope</key>
<string>markup.changed</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#E6DB74</string>
</dict>
</dict>
<dict>
<key>scope</key>
<string>constant.numeric.line-number.find-in-files - match</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#AE81FFA0</string>
</dict>
</dict>
<dict>
<key>scope</key>
<string>entity.name.filename.find-in-files</string>
<key>settings</key>
<dict>
<key>foreground</key>
<string>#E6DB74</string>
</dict>
</dict>
</array>
<key>uuid</key>
<string>0795619A-DBA1-12F3-1ED4-5E5589507C66</string>
</dict>
</plist>
{
"window.zoomLevel": 0,
"editor.tabSize": 2,
"editor.fontSize": 14,
"editor.fontFamily": "Consolas, Menlo, Monaco, 'Courier New', monospace",
"workbench.sideBar.location": "left",
"workbench.activityBar.visible": true,
"terminal.integrated.cursorStyle": "line",
"terminal.integrated.cursorBlinking": true,
"editor.cursorBlinking": "smooth",
"html.format.wrapLineLength": 0,
"workbench.colorTheme": "One Dark+ (Sublime)",
"editor.wordWrap": "on",
"search.exclude": {
"**/node_modules": false,
"**/bower_components": true
},
"editor.renderIndentGuides": true,
"window.restoreWindows": "all",
"editor.renderWhitespace": "all",
"files.trimTrailingWhitespace": true,
"extensions.ignoreRecommendations": false,
"pandoc.htmlOptString": "-s --from=markdown+yaml_metadata_block+inline_code_attributes+pipe_tables -t html5 --template=./libs/pandoc-template.html --toc --toc-depth=3",
"pandoc.pdfOptString": "",
"editor.colorDecorators": false,
"workbench.startupEditor": "newUntitledFile",
"explorer.openEditors.visible": 0,
"workbench.iconTheme": "file-icons",
"projectManager.openInNewWindowWhenClickingInStatusBar": true,
"projectManager.groupList": true,
"projectManager.treeview.visible": false,
"projectManager.removeCurrentProjectFromList": false,
"vscodeWorkspaceSwitcher.paths": [
"/Users/vws-mac-01/Documents/"
],
"eslint.validate": [
"javascript",
"javascriptreact",
"HTML"
],
"editor.mouseWheelZoom": true,
"open-in-browser.default": "Firefox",
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment