Skip to content

Instantly share code, notes, and snippets.

@kwokhou
Created October 4, 2018 13:05
Show Gist options
  • Save kwokhou/27634f7a61de9a3fe857414c40b4e932 to your computer and use it in GitHub Desktop.
Save kwokhou/27634f7a61de9a3fe857414c40b4e932 to your computer and use it in GitHub Desktop.
VS Code Settings
{
"prettier.eslintIntegration": true,
"editor.tabSize": 2,
"editor.minimap.enabled": false,
"eslint.autoFixOnSave": false,
"editor.formatOnPaste": true,
"editor.formatOnSave": false,
"editor.fontFamily": "Fira Code",
"editor.fontLigatures": true,
"editor.fontSize": 12,
"editor.lineHeight": 17,
"html.suggest.ionic": false,
"html.suggest.angular1": false,
"editor.tokenColorCustomizations": {
"textMateRules": [
{
"scope": "punctuation",
"settings": {
"foreground": "#ffffff"
}
},
{
"scope": "storage.modifier",
"settings": {
"foreground": "#d0d0d0",
"fontStyle": "italic"
}
},
{
"scope": "punctuation.definition.comment",
"settings": {
"foreground": "#676767",
"fontStyle": "italic"
}
},
{
"scope": "punctuation.definition.tag.begin",
"settings": {
"foreground": "#d0d0d0"
}
},
{
"scope": "punctuation.definition.tag.end",
"settings": {
"foreground": "#d0d0d0"
}
},
{
"scope": "punctuation.definition.string.begin",
"settings": {
"foreground": "#f7bb9f"
}
},
{
"scope": "punctuation.definition.string.end",
"settings": {
"foreground": "#f7bb9f"
}
},
{
"scope": "variable.other.object",
"settings": {
"foreground": "#569cd6"
}
},
{
"scope": "variable.other.property",
"settings": {
"foreground": "#569cd6"
}
},
{
"scope": "variable.other.readwrite",
"settings": {
"foreground": "#569cd6"
}
},
{
"scope": "meta.identifier",
"settings": {
"foreground": "#CE9178"
}
}
]
},
"vscode_custom_css.imports": [
"file:///Users/andy/.vscode/style.css"
],
"workbench.colorCustomizations": {
"tab.activeBorder": "#00E5E5",
"list.inactiveSelectionForeground": "#00E5E5",
"list.activeSelectionBackground": "#00a6a9"
},
"workbench.colorTheme": "Dark Candy",
"emmet.includeLanguages": {
"javascript": "javascriptreact"
},
"rufo.formatOnSave": true,
"ruby.rctComplete.commandPath": "/Users/andy/.rbenv/shims/rct-complete",
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/._*": true,
"**/.keep": true,
"**/.idea/": true,
"**/.vscode/": true,
"**/node_modules": true
},
"search.exclude": {
"**/node_modules": true,
"**/bower_components": true
},
"gitlens.advanced.messages": {
"suppressCommitHasNoPreviousCommitWarning": false,
"suppressCommitNotFoundWarning": false,
"suppressFileNotUnderSourceControlWarning": false,
"suppressGitVersionWarning": false,
"suppressLineUncommittedWarning": false,
"suppressNoRepositoryWarning": false,
"suppressResultsExplorerNotice": false,
"suppressShowKeyBindingsNotice": true,
"suppressUpdateNotice": false,
"suppressWelcomeNotice": true
},
"gitlens.gitExplorer.files.layout": "auto",
"telemetry.enableCrashReporter": false,
"importCost.javascriptExtensions": [
"\\.jsx?$",
"\\.gql?$",
"\\.js?$",
"\\.css?$",
"\\.svg?$",
],
"autoimport.filesToScan": "**/*.{ts,tsx,js}",
"path-autocomplete.extensionOnImport": true,
"path-autocomplete.excludedItems": {
"**/*.js": {
"when": "**"
}
},
"gitlens.historyExplorer.enabled": true,
"window.zoomLevel": 0,
"workbench.settings.editor": "json",
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment