Last active
May 14, 2023 02:34
-
-
Save eltonsantos/e7de4a50b1823f49e1b4e6ce26d9c805 to your computer and use it in GitHub Desktop.
Backup do meu Settings.json 2022
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
// "terminal.integrated.shell.windows": "C:\\Program Files\\Git\\bin\\bash.exe", | |
"explorer.confirmDelete": false, | |
"editor.wordWrap": "on", | |
// "editor.wordWrap": "wordWrapColumn", | |
"workbench.iconTheme": "vscode-icons", | |
"liveServer.settings.donotShowInfoMsg": true, | |
"editor.suggestSelection": "first", | |
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue", | |
"git.autofetch": true, | |
"editor.tabSize": 2, | |
"colorize.languages": [ | |
"css", | |
"sass", | |
"scss", | |
"less", | |
"postcss", | |
"sss", | |
"stylus", | |
"xml", | |
"svg", | |
"javascript", | |
"typescript", | |
"tsx" | |
], | |
"python.languageServer": "Jedi", | |
"tabnine.experimentalAutoImports": true, | |
"liveServer.settings.donotVerifyTags": true, | |
//"editor.fontFamily": "Consolas, 'Courier New', monospace, 'Segoe UI Emoji'", | |
//"editor.fontLigatures": null, | |
"editor.fontFamily": "Fira Code", | |
"editor.fontSize": 16, | |
"editor.fontLigatures": true, | |
"terminal.integrated.fontWeight": "normal", | |
"typescript.tsdk": "", | |
"explorer.compactFolders": false, | |
"files.eol": "\n", | |
// "editor.codeActionsOnSave": { | |
// // "source.fixAll": true, | |
// "source.fixAll.eslint": true, | |
// }, | |
"eslint.options": {}, | |
"workbench.colorTheme": "Omni Owl", | |
"workbench.activityBar.visible": true, | |
"window.menuBarVisibility": "visible", | |
"elixirLS.dialyzerEnabled": false, | |
"elixirLS.suggestSpecs": false, | |
"elixirLS.projectDir": "rocketpay", | |
"workbench.editorAssociations": { | |
"*.ipynb": "jupyter-notebook" | |
}, | |
"workbench.startupEditor": "none", | |
"[javascriptreact]": { | |
"editor.defaultFormatter": "vscode.typescript-language-features" | |
}, | |
"[typescript]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[typescriptreact]": { | |
"editor.defaultFormatter": "vscode.typescript-language-features" | |
}, | |
"[javascript]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[html]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[jsonc]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"emmet.triggerExpansionOnTab": true, | |
"files.associations": { | |
"*html": "html" | |
}, | |
"[dockerfile]": { | |
"editor.quickSuggestions": { | |
"strings": true | |
} | |
}, | |
"[prisma]": { | |
"editor.formatOnSave" : true | |
}, | |
"files.watcherExclude": { | |
"**/.bloop": true, | |
"**/.metals": true, | |
"**/.ammonite": true | |
}, | |
"terminal.integrated.tabs.enabled": true, | |
"terminal.integrated.defaultProfile.windows": "Git Bash", | |
// "terminal.integrated.shell.osx": "/bin/zsh", | |
// "terminal.integrated.profiles.linux": { | |
// "bash": { | |
// "path": "bash" | |
// }, | |
// "zsh": { | |
// "path": "zsh" | |
// }, | |
// "fish": { | |
// "path": "fish" | |
// }, | |
// "tmux": { | |
// "path": "tmux", | |
// "icon": "terminal-tmux" | |
// }, | |
// "pwsh": { | |
// "path": "pwsh", | |
// "icon": "terminal-powershell" | |
// }, | |
// "sh": { | |
// "path": "/bin/sh" | |
// }, | |
// "/bin/bash (migrated)": { | |
// "path": "/bin/bash", | |
// "args": [] | |
// } | |
// }, | |
// "terminal.integrated.defaultProfile.linux": "/bin/bash (migrated)", | |
// "terminal.integrated.automationShell.linux": "", | |
"vsicons.dontShowNewVersionMessage": true, | |
// "[scss]": { | |
// "editor.defaultFormatter": "sibiraj-s.vscode-scss-formatter" | |
// }, | |
"notebook.cellToolbarLocation": { | |
"default": "right", | |
"jupyter-notebook": "left" | |
}, | |
"git.suggestSmartCommit": false, | |
//"editor.fontSize": 16, | |
"emmet.showSuggestionsAsSnippets": true, | |
"emmet.includeLanguages": { | |
"erb": "html", | |
"ruby": "html" | |
}, | |
"bracketPairColorizer.depreciation-notice": false, | |
"editor.largeFileOptimizations": false, | |
"explorer.confirmDragAndDrop": false, | |
// PARA RUBY | |
// "editor.formatOnSave": true, | |
// "ruby.useLanguageServer": true, | |
// "ruby.lint": { | |
// "rubocop": true | |
// }, | |
// "ruby.format": "rubocop", | |
// "[ruby]": { | |
// "editor.defaultFormatter": "rebornix.ruby" | |
// } | |
// Columns at which to show vertical rulers | |
"editor.rulers": [ | |
140 | |
], | |
"update.mode": "none", | |
"workbench.editor.untitled.hint": "hidden", | |
"typescript.validate.enable": true, | |
"react-native-tools.showUserTips": false, | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment