Last active
November 25, 2020 09:20
-
-
Save silverprize/4444b4dc6b0c0c319b888f457f280507 to your computer and use it in GitHub Desktop.
Visual Studio Code settings
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"editor.lineHeight": 19, | |
"editor.fontLigatures": "'ss01', 'ss02', 'ss03', 'ss04', 'ss05', 'ss06', 'zero'", | |
"editor.fontFamily": "'FiraCode-Retina', 'JetBrains Mono', Menlo, Monaco, 'Courier New', monospace", | |
"editor.tabSize": 2, | |
"editor.wordWrapColumn": 100, | |
"editor.wordWrap": "on", | |
"files.trimTrailingWhitespace": true, | |
"workbench.colorTheme": "Visual Studio Light", | |
"workbench.editor.showTabs": true, | |
"workbench.colorCustomizations": { | |
"[Visual Studio Light]": { | |
"editor.background": "#f2f2f2" | |
} | |
}, | |
"editor.tokenColorCustomizations": { | |
"[Visual Studio Light]": { | |
"textMateRules": [ | |
{ | |
"scope": [ | |
"support.class.builtin", | |
"support.class.console", | |
"meta.method.declaration", | |
"meta.brace.round", | |
"meta.object.member", | |
"meta.type.parameters", | |
"meta.function-call.java", | |
"meta.definition.variable.java", | |
"meta.brace.square", | |
"variable.parameter", | |
"variable.other.object", | |
"variable.other.constant.property", | |
"storage.type.java", | |
"punctuation.definition.typeparameters.begin", | |
"punctuation.definition.typeparameters.end", | |
"punctuation.definition.parameters.begin.ts", | |
"punctuation.definition.parameters.end.ts", | |
"punctuation.definition.block.ts" | |
], | |
"settings": { | |
"foreground": "#000000" | |
} | |
}, | |
{ | |
"scope": [ | |
"support.type.builtin", | |
"support.type.primitive", | |
"meta.type.parameters", | |
"meta.type.annotation", | |
], | |
"settings": { | |
"foreground": "#267F99" | |
} | |
}, | |
{ | |
"scope": [ | |
"variable.other.constant.property", | |
// "variable.other.object.property", | |
// "variable.other.property", | |
"meta.object-literal.key", | |
], | |
"settings": { | |
// "foreground": "#7B1FA2" | |
"foreground": "#6f1c92" | |
} | |
}, | |
{ | |
"scope": [ | |
"punctuation.decorator", | |
"meta.decorator", | |
"meta.function-call", | |
"meta.declaration.annotation.java", | |
"storage.type.annotation.java", | |
], | |
"settings": { | |
"foreground": "#795E26" | |
} | |
}, | |
] | |
} | |
}, | |
"[markdown]": { | |
"files.trimTrailingWhitespace": false | |
}, | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment