Skip to content

Instantly share code, notes, and snippets.

@RicardoBrito1938
Created April 27, 2022 15:39
Show Gist options
  • Save RicardoBrito1938/585082a351f805737da317f010aff98b to your computer and use it in GitHub Desktop.
Save RicardoBrito1938/585082a351f805737da317f010aff98b to your computer and use it in GitHub Desktop.
Settings used in my vs code
{
"javascript.updateImportsOnFileMove.enabled": "always",
//"workbench.colorTheme": "Launchbase Theme",
"workbench.colorTheme": "Dracula",
"terminal.integrated.rendererType": "dom",
"editor.fontFamily": "'Fira Code'", //"Consolas, 'Courier New', monospace",
"editor.fontLigatures": true,
"editor.formatOnSave": true,
"editor.rulers": [80, 120],
"emmet.syntaxProfiles": {
"javascript": "jsx"
},
"emmet.includeLanguages": {
"javascript": "javascriptreact"
},
"breadcrumbs.enabled": true,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"material-icon-theme.folders.associations": {
"infra": "app",
"entities": "class",
"schemas": "class",
"typeorm": "database",
"repositories": "mappings",
"http": "container",
"migrations": "tools",
"modules": "components",
"implementations": "core",
"dtos": "typescript",
"fakes": "mock"
},
"material-icon-theme.files.associations" : {
"ormconfig.json": "database",
"tsconfig.json": "tune"
},
"workbench.editor.labelFormat": "short", // ⇒ Permite a visualização da pasta onde o arquivo aberto está.
"explorer.compactFolders": false,
"files.associations": {
"*.html": "html"
},
"sync.gist": "c0313bec89500c6f2750c03423011cc8",
"editor.suggestSelection": "first",
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"terminal.integrated.fontFamily": "monospace",
"prettier.arrowParens": "avoid",
"prettier.endOfLine": "auto",
"prettier.trailingComma": "none",
"eslint.packageManager": "yarn",
"git.autofetch": true,
"cSpell.userWords": [
"ACHIEVEMENTSNUMBER",
"animatable",
"awsconfig",
"Bugsnag",
"Fastbitcoins",
"Formik",
"mapbox",
"Pressable",
"supercluster"
],
"cSpell.language": "en,pt",
"workbench.statusBar.visible": true,
"editor.minimap.enabled": true,
"editor.renderControlCharacters": false,
"editor.linkedEditing": true,
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[css]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"liveServer.settings.donotShowInfoMsg": true,
"tabnine.experimentalAutoImports": true,
"git.confirmSync": false,
"[typescriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"editor.inlineSuggest.enabled": true,
"files.exclude": {
"**/.classpath": true,
"**/.project": true,
"**/.settings": true,
"**/.factorypath": true
},
"workbench.editor.enablePreview": false,
"bracket-pair-colorizer-2.depreciation-notice": false,
"workbench.iconTheme": "material-icon-theme",
"git.suggestSmartCommit": false,
"json.schemas": [
{
"name": "vscode-expo-manifest",
"url": "file:///home/user/.config/Code/User/globalStorage/bycedric.vscode-expo/manifest-44.0.0.json",
"fileMatch": [
"app.json",
"app.config.json"
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment