Skip to content

Instantly share code, notes, and snippets.

@buncis
Created April 14, 2021 09:35
Show Gist options
  • Save buncis/9138ade174949635efb4a1cb23df3562 to your computer and use it in GitHub Desktop.
Save buncis/9138ade174949635efb4a1cb23df3562 to your computer and use it in GitHub Desktop.
working vscode rails
{
"files.autoSave": "off",
"window.titleBarStyle": "custom",
"window.menuBarVisibility": "classic",
"[dart]": {
"editor.formatOnSave": true,
"editor.formatOnType": true,
"editor.rulers": [
80
],
"editor.selectionHighlight": false,
"editor.suggest.snippetsPreventQuickSuggestions": false,
"editor.suggestSelection": "first",
"editor.tabCompletion": "onlySnippets",
"editor.wordBasedSuggestions": false
},
"workbench.iconTheme": "material-icon-theme",
"[html]": {
"editor.defaultFormatter": "vscode.html-language-features"
},
"editor.tabSize": 2,
"explorer.confirmDelete": false,
"workbench.startupEditor": "newUntitledFile",
"[erb]": {
"editor.defaultFormatter": "aliariff.vscode-erb-beautify"
},
"editor.formatOnSave": true,
"explorer.confirmDragAndDrop": false,
"files.associations": {
"*.erb": "erb"
}
}
@buncis
Copy link
Author

buncis commented Apr 14, 2021

image

just install htmlbeautifier

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment