Skip to content

Instantly share code, notes, and snippets.

@manufarez
Created October 23, 2023 23:59
Show Gist options
  • Save manufarez/d6ec7d3e7e869818da7d07ebc28b9a4a to your computer and use it in GitHub Desktop.
Save manufarez/d6ec7d3e7e869818da7d07ebc28b9a4a to your computer and use it in GitHub Desktop.
Settings for VSCODE
{
"workbench.preferredDarkColorTheme": "Monokai Night",
"workbench.preferredHighContrastColorTheme": "Monokai Night",
"workbench.tree.indent": 18,
"editor.fontSize": 14,
"editor.multiCursorModifier": "ctrlCmd",
"emmet.triggerExpansionOnTab": true,
"emmet.includeLanguages": {
"*.html.erb": "html",
"erb": "html"
},
"emmet.preferences": {
"format.forceIndentationForTags": ["div"]
},
"git.enabled": false,
"[erb]": {
"editor.defaultFormatter": "aliariff.vscode-erb-beautify",
"editor.formatOnSave": true
},
"files.associations": {
"*.html.erb": "erb",
"*.xml": "html",
"*.svg": "html"
},
"vscode-erb-beautify.customEnvVar": {
"LC_ALL": "en_US.UTF-8"
},
"files.exclude": {
"**/development.log": true
},
"files.insertFinalNewline": true,
"files.trimFinalNewlines": true,
"files.trimTrailingWhitespace": true,
"editor.tabSize": 2,
"[html]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[ruby]": {
"editor.formatOnSave": false
},
"tailwindCSS.includeLanguages": {
"javascript": "javascript",
"html": "html",
"erb": "html"
},
"tailwindCSS.emmetCompletions": true,
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"tailwindCSS.experimental.classRegex": [
"\\bclass:\\s*'([^']*)'",
"\\bclass:\\s*\"([^\"]*)\""
],
"workbench.startupEditor": "newUntitledFile",
"workbench.colorTheme": "Monokai Night",
"workbench.iconTheme": "bearded-icons",
"workbench.activityBar.visible": false,
"yaml.schemas": {
"file:///Users/manufarez/.vscode/extensions/atlassian.atlascode-3.0.0/resources/schemas/pipelines-schema.json": "bitbucket-pipelines.yml"
},
"atlascode.bitbucket.enabled": true,
"atlascode.jira.enabled": false,
"redhat.telemetry.enabled": false,
"[json]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"editor.inlineSuggest.enabled": true,
"php.suggest.basic": false,
"editor.formatOnSave": true,
"debug.disassemblyView.showSourceCode": false,
"[yaml]": {
"editor.defaultFormatter": "redhat.vscode-yaml"
},
"workbench.editor.enablePreview": false,
"editor.minimap.enabled": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment