Skip to content

Instantly share code, notes, and snippets.

@overdrivemachines
Last active November 21, 2023 01:04
Show Gist options
  • Save overdrivemachines/ad068bd3058847988117b4b2caaf2de2 to your computer and use it in GitHub Desktop.
Save overdrivemachines/ad068bd3058847988117b4b2caaf2de2 to your computer and use it in GitHub Desktop.
VSCode Settings (located in ~/Library/Application Support/Code/User/settings.json)
{
"[erb]": {
"editor.defaultFormatter": "aliariff.vscode-erb-beautify",
"editor.formatOnSave": true
},
"[jsonc]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[ruby]": {
"editor.defaultFormatter": "misogi.ruby-rubocop"
},
"editor.fontSize": 18,
"editor.formatOnSave": true,
"editor.showFoldingControls": "always",
"editor.tabSize": 2,
"files.associations": {
"*.html.erb": "erb"
},
"files.insertFinalNewline": true,
"files.trimFinalNewlines": true,
"git.confirmSync": false,
"git.enableSmartCommit": true,
// "markdown.preview.scrollEditorWithPreview": true,
// "markdown.preview.scrollPreviewWithEditor": true
"ruby.rubocop.executePath": "",
"ruby.rubocop.onSave": true,
"security.workspace.trust.untrustedFiles": "open",
"tabnine.experimentalAutoImports": true,
"terminal.integrated.enableMultiLinePasteWarning": false,
"workbench.colorTheme": "Default Dark Modern",
"workbench.iconTheme": "vscode-icons"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment