Skip to content

Instantly share code, notes, and snippets.

@jjercx
Created March 2, 2021 15:24
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 jjercx/406ecd45a4573e656c2e73b7b09b5556 to your computer and use it in GitHub Desktop.
Save jjercx/406ecd45a4573e656c2e73b7b09b5556 to your computer and use it in GitHub Desktop.
VSCode User Settings 2021-03-01
{
"workbench.colorTheme": "Ayu Light Bordered",
"workbench.iconTheme": "material-icon-theme",
"editor.minimap.enabled": false,
"editor.showFoldingControls": "always",
"files.autoSave": "onFocusChange",
"files.trimTrailingWhitespace": true,
"editor.renderWhitespace": "boundary",
"files.eol": "\n",
"files.trimFinalNewlines": true,
"ruby.codeCompletion": "rcodetools",
"ruby.intellisense": "rubyLocate",
"ruby.useBundler": true,
"editor.formatOnPaste": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true,
"javascript.updateImportsOnFileMove.enabled": "always",
"explorer.confirmDragAndDrop": false,
"workbench.preferredDarkColorTheme": "Ayu Dark Bordered",
"workbench.preferredHighContrastColorTheme": "Ayu Light Bordered",
"workbench.preferredLightColorTheme": "Ayu Light Bordered",
"git.confirmSync": false,
"git.autofetch": true,
"ruby.format": "rubocop",
// "ruby.rubocop.executePath": "/Users/juanjoseramirez/.rbenv/shims/"
"[ruby]": {
"editor.defaultFormatter": "misogi.ruby-rubocop",
"editor.formatOnSave": true
},
"files.associations": {
"Gemfile": "ruby",
"*.ractive": "handlebars"
},
"editor.tabSize": 2,
"window.zoomLevel": 0,
"todo-tree.tree.showScanModeButton": false,
"window.autoDetectColorScheme": true,
"cSpell.language": "en,es",
"cSpell.userWords": [
"circleci",
"datetime",
"enforced",
"for",
"multiline",
"openapi",
"postgresql",
"rubocop",
"sqlite",
"style"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment