Skip to content

Instantly share code, notes, and snippets.

@christianrojas
Last active September 30, 2021 16:11
Show Gist options
  • Save christianrojas/4b68b937acf5e0eb792fa0b6814ec6ea to your computer and use it in GitHub Desktop.
Save christianrojas/4b68b937acf5e0eb792fa0b6814ec6ea to your computer and use it in GitHub Desktop.
VSCode Setup
[
{
"key": "cmd+alt+.",
"command": "erb.toggleTags",
"when": "editorTextFocus && editorLangId == 'html.erb'"
}
]
{
"workbench.colorTheme": "GitHub Dark",
"window.zoomLevel": 0,
"workbench.statusBar.visible": true,
"editor.fontFamily": "JetBrains Mono",
"editor.fontSize": 16,
"editor.tabSize": 2,
"terminal.integrated.fontSize": 16,
"terminal.integrated.fontFamily": "JetBrains Mono",
"files.insertFinalNewline": true,
"editor.minimap.enabled": false,
"breadcrumbs.enabled": false,
"workbench.tree.indent": 20,
"editor.wrappingIndent": "indent",
"editor.wordWrap": "on",
"files.trimTrailingWhitespace": true,
"solargraph.bundlerPath": "/Users/0xcr/.rbenv/shims/solargraph",
"solargraph.diagnostics": true,
"solargraph.definitions": true,
"solargraph.hover": true,
"ruby.rubocop.executePath": "/Users/0xcr/.rbenv/shims/",
"ruby.rubocop.onSave": true,
"ruby.rubocop.configFilePath": "/Users/0xcr/Dropbox/Work/code/ccoins-pay/.rubocop.yml",
"ruby.useBundler": true,
"ruby.useLanguageServer": true,
"ruby.lint": {
"rubocop": {
"command": "rubocop",
"useBundler": true,
"rails": true
}
},
"ruby.format": "rubocop",
"emmet.triggerExpansionOnTab": true,
"emmet.includeLanguages": {
"erb": "html",
"ruby": "html",
"html.erb": "html"
},
"tailwindCSS.includeLanguages": {
"plaintext": "html",
"html.erb": "html"
},
"tailwindCSS.emmetCompletions": true,
"css.validate": false,
"explorer.confirmDelete": false,
"gitlens.hovers.currentLine.over": "line",
"gitlens.codeLens.enabled": false,
"gitlens.currentLine.enabled": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment