Skip to content

Instantly share code, notes, and snippets.

@yatish27
Created May 31, 2024 18:33
Show Gist options
  • Save yatish27/e9b835e9225d66f99f34eb149ddc6512 to your computer and use it in GitHub Desktop.
Save yatish27/e9b835e9225d66f99f34eb149ddc6512 to your computer and use it in GitHub Desktop.
VSCode settings
{
"workbench.colorTheme": "Night Owl (No Italics)",
"editor.fontFamily": "Fira Code",
"editor.fontSize": 14,
"editor.fontWeight": 325,
"editor.letterSpacing": 0,
"editor.formatOnSave": true,
"editor.minimap.enabled": false,
"editor.multiCursorModifier": "alt",
"editor.trimAutoWhitespace": true,
"editor.rulers": [80, 120],
"editor.maxTokenizationLineLength": 200000,
"editor.inlineSuggest.enabled": true,
"editor.semanticHighlighting.enabled": true,
"editor.insertSpaces": true,
"editor.formatOnType": true,
"editor.stickyScroll.enabled": false,
"editor.tabSize": 2,
"editor.autoClosingBrackets": "always",
"editor.autoClosingQuotes": "always",
"editor.guides.indentation": true,
"editor.guides.bracketPairs": true,
"files.autoSave": "onFocusChange",
"telemetry.telemetryLevel": "off",
"typescript.surveys.enabled": false,
"update.showReleaseNotes": false,
"security.workspace.trust.untrustedFiles": "open",
"workbench.startupEditor": "none",
"tailwindCSS.includeLanguages": {
"ruby": "html",
"erb": "html"
},
"rubyLsp.pullDiagnosticsOn": "save",
"rubyLsp.enabledFeatures": {
"codeActions": true,
"diagnostics": false,
"documentHighlights": true,
"documentLink": true,
"documentSymbols": true,
"foldingRanges": true,
"formatting": true,
"hover": true,
"inlayHint": true,
"onTypeFormatting": true,
"selectionRanges": true,
"semanticHighlighting": true,
"completion": true,
"codeLens": true,
"definition": true,
"workspaceSymbol": true,
"signatureHelp": true
},
"files.associations": {
"*.html.erb": "erb"
},
"git.autofetch": true,
"github.copilot.enable": {
"*": true,
"plaintext": false,
"markdown": true,
"scminput": false
},
"github.copilot.editor.enableAutoCompletions": true,
"git.confirmSync": false,
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[ruby]": {
"tailwindCSS.experimental.classRegex": ["\\bclass:\\s*[\"']([^\"']*)[\"']"],
"editor.defaultFormatter": "rubocop.vscode-rubocop",
"editor.formatOnSave": true,
"editor.tabSize": 2,
"editor.insertSpaces": true,
"editor.semanticHighlighting.enabled": true,
"editor.formatOnType": true,
"files.trimTrailingWhitespace": true,
"files.trimFinalNewlines": true,
"editor.rulers": [120]
},
"[erb]": {
"tailwindCSS.experimental.classRegex": ["\\bclass:\\s*[\"']([^\"']*)[\"']"],
"editor.defaultFormatter": "aliariff.vscode-erb-beautify",
"editor.formatOnSave": true
},
"[jsonc]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[css]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[handlebars]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment