Skip to content

Instantly share code, notes, and snippets.

@tomraulet
Last active September 5, 2019 16:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tomraulet/617dedbedbb7693623f570c892eb1692 to your computer and use it in GitHub Desktop.
Save tomraulet/617dedbedbb7693623f570c892eb1692 to your computer and use it in GitHub Desktop.
VSCode settings
{
"window.titleBarStyle": "custom",
"ruby.intellisense": "rubyLocate",
"ruby.format": "standard",
"ruby.codeCompletion": "rcodetools",
"terminal.integrated.fontFamily": "Droid Sans Mono for Powerline",
"editor.multiCursorModifier": "ctrlCmd",
"git.confirmSync": false,
"gitlens.advanced.telemetry.enabled": false,
"telemetry.enableCrashReporter": false,
"workbench.iconTheme": "material-icon-theme",
"material-icon-theme.folders.associations": {
"domain": "controller"
},
"yaml.schemas": {
"file:///home/sycomore/.vscode-oss/extensions/atlassian.atlascode-1.4.1/resources/schemas/pipelines-schema.json": "bitbucket-pipelines.yml"
},
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"gitlens.advanced.messages": {
"suppressCommitHasNoPreviousCommitWarning": true
},
"editor.tokenColorCustomizations": {
"[Solarized Dark]": {
"textMateRules": [
{
"scope": [
"meta.function-call.generic.python",
"punctuation.definition.arguments.begin.python",
"punctuation.definition.arguments.end.python",
"variable.parameter.function.language.special.self.python" // self
], /*functions()*/
"settings": {
"foreground": "#0184BC"
}
},
{
"scope": [
"meta.function.python"
], /*type hint and all around function declaration*/
"settings": {
"foreground": "#cb4b16"
}
},
{
"scope": [
"variable.parameter.function.language.python",
], /*variable in function declaration()*/
"settings": {
"foreground": "#b58900"
}
}
]
}
},
"workbench.colorTheme": "Solarized Dark"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment