Skip to content

Commit

Permalink
Change colourscheme and font
Browse files Browse the repository at this point in the history
  • Loading branch information
roo1989 committed Sep 7, 2021
1 parent 8529453 commit 1d965f1
Showing 1 changed file with 56 additions and 42 deletions.
98 changes: 56 additions & 42 deletions settings.json
Original file line number Diff line number Diff line change
@@ -1,61 +1,75 @@
{
"workbench.colorTheme": "Just Black",
"workbench.colorTheme": "Palenight (Mild Contrast)",
"editor.scrollbar.vertical": "hidden",
"editor.scrollbar.horizontal": "hidden",
"editor.fontLigatures": true,
"editor.snippetSuggestions": "top",
"emmet.showAbbreviationSuggestions": false,
"editor.multiCursorModifier": "ctrlCmd",
"editor.formatOnPaste": false,
"workbench.iconTheme": "vscode-icons",
"workbench.iconTheme": "vscode-icons",
"code-runner.executorMap": {
"javascript": "node",
"python": "python",
"go": "go run",
"html": "\"C:\\Program Files (x86)\\Google\\Chrome\\Application\\chrome.exe\"",
"java": "cd $dir && javac $fileName && java $fileNameWithoutExt",
"c": "cd $dir && gcc $fileName -o $fileNameWithoutExt && $dir$fileNameWithoutExt"
"javascript": "node",
"python": "python",
"go": "go run",
"html": "\"C:\\Program Files (x86)\\Google\\Chrome\\Application\\chrome.exe\"",
"java": "cd $dir && javac $fileName && java $fileNameWithoutExt",
"c": "cd $dir && gcc $fileName -o $fileNameWithoutExt && $dir$fileNameWithoutExt"
},
"code-runner.clearPreviousOutput": true,
"editor.accessibilitySupport": "on",
"editor.tabSize": 2,
"editor.detectIndentation": true,
"editor.minimap.enabled": false,
"files.exclude": { "**/.*": true },
"files.exclude": {
"**/.*": true
},
"editor.fontFamily": "Operator Mono",
"workbench.editor.showTabs": false,
"editor.tokenColorCustomizations": {
"textMateRules": [
{
"scope": [
//following will be in italic (=FlottFlott)
"comment",
"entity.name.type.class", //class names
"keyword", //import, export, return…
"constant", //String, Number, Boolean…, this, super
"storage.modifier", //static keyword
"storage.type.class", //class keyword
],
"settings": {
"fontStyle": "italic"
}
},
{
"scope": [
//following will be excluded from italics (VSCode has some defaults for italics)
"invalid",
"keyword.operator",
"constant.numeric.css",
"keyword.other.unit.px.css",
"constant.numeric.decimal.js",
"constant.numeric.json"
],
"settings": {
"fontStyle": ""
},
"textMateRules": [
{
"scope": [
"comment",
"entity.name.type.class",
"keyword",
"constant",
"storage.modifier",
"storage.type.class"
],
"settings": {
"fontStyle": "italic"
}
},
{
"scope": [
"invalid",
"keyword.operator",
"constant.numeric.css",
"keyword.other.unit.px.css",
"constant.numeric.decimal.js",
"constant.numeric.json"
],
"settings": {
"fontStyle": ""
}
]
},
"editor.fontWeight": "500",
"editor.fontSize": 13
}
}
]
},
"editor.fontWeight": "500",
"editor.fontSize": 13,
"editor.linkedEditing": true,
"tabnine.experimentalAutoImports": true,
"advancedNewFile.exclude": {
"node_modules": true,
"node_modules_electron": true,
"dev": true,
"dist": true
},
"advancedNewFile.showInformationMessages": true,
"advancedNewFile.convenienceOptions": [
"last",
"current",
"root"
]
}

0 comments on commit 1d965f1

Please sign in to comment.