Skip to content

Instantly share code, notes, and snippets.

@Arc0re
Created June 22, 2022 15:33
Show Gist options
  • Save Arc0re/2a571e1083b95b63632b5d7f3f241c88 to your computer and use it in GitHub Desktop.
Save Arc0re/2a571e1083b95b63632b5d7f3f241c88 to your computer and use it in GitHub Desktop.
VSCode settings file to emulate the look and feel of NOTEPAD.EXE
{
"workbench.tree.indent": 32,
"extensions.ignoreRecommendations": true,
"security.workspace.trust.untrustedFiles": "open",
/* --------------------------------------------------------------------------- */
/* NOTEPAD.EXE MODE ENGAGED */
"update.mode": "manual",
"workbench.colorTheme": "Notepad",
"workbench.iconTheme": "vscode-icons",
"editor.guides.indentation": false,
"editor.bracketPairColorization.enabled": false,
"workbench.activityBar.visible": false,
"workbench.statusBar.visible": false,
"editor.minimap.enabled": false,
"workbench.editor.showIcons": false, // file icons dans les onglets
"window.titleBarStyle": "native",
"window.autoDetectColorScheme": false,
"window.dialogStyle": "native",
"window.restoreWindows": "preserve",
"window.title": "${dirty}${activeEditorShort}${separator}${rootName}${separator}Notepad",
"editor.lineNumbers": "off",
"breadcrumbs.enabled": false,
"workbench.editor.showTabs": false,
"editor.glyphMargin": false,
"editor.renderLineHighlight": "none",
"editor.folding": false,
"editor.tokenColorCustomizations": {
"textMateRules": [
{ // Virer les trucs en gras :
"scope": [
"comment",
"comment.block",
"comment.block.documentation",
"comment.line",
"constant",
"constant.character",
"constant.character.escape",
"constant.numeric",
"constant.numeric.integer",
"constant.numeric.float",
"constant.numeric.hex",
"constant.numeric.octal",
"constant.other",
"constant.regexp",
"constant.rgb-value",
"emphasis",
"entity",
"entity.name",
"entity.name.class",
"entity.name.function",
"entity.name.method",
"entity.name.section",
"entity.name.selector",
"entity.name.tag",
"entity.name.type",
"entity.other",
"entity.other.attribute-name",
"entity.other.inherited-class",
"invalid",
"invalid.deprecated",
"invalid.illegal",
"keyword",
"keyword.control",
"keyword.operator",
"keyword.operator.new",
"keyword.operator.assignment",
"keyword.operator.arithmetic",
"keyword.operator.logical",
"keyword.other",
"markup",
"markup.bold",
"markup.changed",
"markup.deleted",
"markup.heading",
"markup.inline.raw",
"markup.inserted",
"markup.italic",
"markup.list",
"markup.list.numbered",
"markup.list.unnumbered",
"markup.other",
"markup.quote",
"markup.raw",
"markup.underline",
"markup.underline.link",
"meta",
"meta.block",
"meta.cast",
"meta.class",
"meta.function",
"meta.function-call",
"meta.preprocessor",
"meta.return-type",
"meta.selector",
"meta.tag",
"meta.type.annotation",
"meta.type",
"punctuation.definition.string.begin",
"punctuation.definition.string.end",
"punctuation.separator",
"punctuation.separator.continuation",
"punctuation.terminator",
"storage",
"storage.modifier",
"storage.type",
"string",
"string.interpolated",
"string.other",
"string.quoted",
"string.quoted.double",
"string.quoted.other",
"string.quoted.single",
"string.quoted.triple",
"string.regexp",
"string.unquoted",
"strong",
"support",
"support.class",
"support.constant",
"support.function",
"support.other",
"support.type",
"support.type.property-name",
"support.variable",
"variable",
"variable.language",
"variable.name",
"variable.other",
"variable.other.readwrite",
"variable.parameter"
],
"settings": {
"fontStyle": ""
}
},
{ // mettre les commentaires en vert
"scope":"comment",
"settings": {
"foreground": "#3b7940",
}
}
]
}
/* --------------------------------------------------------------------------- */
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment