Skip to content

Instantly share code, notes, and snippets.

@leodutra
Last active September 19, 2023 18:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save leodutra/50fa72aae8ce7677f8b02d8e25d1861b to your computer and use it in GitHub Desktop.
Save leodutra/50fa72aae8ce7677f8b02d8e25d1861b to your computer and use it in GitHub Desktop.
VSCode - Visual Studio Code settings
{
"editor.tabSize": 4,
"[javascript]": {
"editor.tabSize": 2,
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[javascriptreact]": {
"editor.tabSize": 2,
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[typescript]": {
"editor.tabSize": 2,
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[typescriptreact]": {
"editor.tabSize": 2,
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[jsonc]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[json]": {
"editor.tabSize": 2,
"editor.defaultFormatter": "vscode.json-language-features"
},
"[css]": {
"editor.tabSize": 2,
"editor.defaultFormatter": "vscode.css-language-features"
},
"[scss]": {
"editor.tabSize": 2,
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"editor.fontWeight": 500,
"editor.suggestSelection": "first",
"git.autofetch": true,
"git.confirmSync": false,
"javascript.updateImportsOnFileMove.enabled": "always",
"json.maxItemsComputed": 100000,
"rust-analyzer.updates.askBeforeDownload": false,
// "rust-client.engine": "rust-analyzer",
// "rust-analyzer.diagnostics.disabled": ["unresolved-macro-call"],
"security.workspace.trust.untrustedFiles": "open",
"terminal.integrated.fontFamily": "'FiraMono Nerd Font', 'FuraMono Nerd Font', 'FuraMono NF', Consolas, 'Courier New', monospace",
"terminal.integrated.fontSize": 14,
"terminal.integrated.fontWeight": 600,
"terminal.integrated.scrollback": 50000,
"window.titleBarStyle": "custom",
"workbench.iconTheme": "material-icon-theme",
"diffEditor.ignoreTrimWhitespace": false,
"rust-client.engine": "rust-analyzer",
"rust-client.autoStartRls": false,
"[markdown]": {
"editor.defaultFormatter": "yzhang.markdown-all-in-one"
},
"git.suggestSmartCommit": false,
"explorer.confirmDelete": false,
"editor.inlineSuggest.enabled": true,
"typescript.updateImportsOnFileMove.enabled": "always",
"[html]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"terminal.integrated.defaultProfile.windows": "Git Bash",
"go.toolsManagement.autoUpdate": true,
"git.openRepositoryInParentFolders": "always",
"[dockercompose]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"editor.minimap.enabled": false,
"[ruby]": {
"editor.defaultFormatter": "misogi.ruby-rubocop",
"editor.formatOnSave": true,
"editor.formatOnType": true,
"editor.tabSize": 2,
"editor.insertSpaces": true,
"editor.semanticHighlighting.enabled": true
},
"files.trimTrailingWhitespace": true,
"files.insertFinalNewline": true,
"editor.rulers": [
120
],
"rubyLsp.enabledFeatures": {
"codeActions": true,
"diagnostics": true,
"documentHighlights": true,
"documentLink": true,
"documentSymbols": true,
"foldingRanges": true,
"formatting": true,
"hover": true,
"inlayHint": true,
"onTypeFormatting": true,
"selectionRanges": true,
"semanticHighlighting": true,
"completion": true,
"codeLens": false
},
"[erb]": {
"editor.defaultFormatter": "aliariff.vscode-erb-beautify"
},
"lldb.suppressUpdateNotifications": true,
"workbench.colorTheme": "Material Theme High Contrast",
"[rust]": {
"editor.defaultFormatter": "rust-lang.rust-analyzer"
},
"editor.fontFamily": "'FiraMono Nerd Font', 'FuraMono Nerd Font', 'FuraMono NF', Consolas, 'Courier New', monospace",
"editor.fontSize": 13,
"files.autoSave": "afterDelay"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment