Skip to content

Instantly share code, notes, and snippets.

@uatisdeproblem
Last active July 27, 2023 16:03
Show Gist options
  • Save uatisdeproblem/f9f4c4539db80301a362f91decc29edc to your computer and use it in GitHub Desktop.
Save uatisdeproblem/f9f4c4539db80301a362f91decc29edc to your computer and use it in GitHub Desktop.
User Settings Visual Studio Code IDEA (Code > Preferences > Settings)
{
"workbench.sideBar.location": "right",
"git.autofetch": true,
"git.confirmSync": false,
"editor.tabSize": 2,
"editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"diffEditor.ignoreTrimWhitespace": false,
"editor.minimap.enabled": false,
"typescript.updateImportsOnFileMove.enabled": "never",
"javascript.updateImportsOnFileMove.enabled": "never",
"outline.showStructs": false,
"outline.showTypeParameters": false,
"outline.showVariables": false,
"outline.showStrings": false,
"outline.showPackages": false,
"outline.showOperators": false,
"outline.showNull": false,
"outline.showNamespaces": false,
"outline.showKeys": false,
"outline.showFunctions": false,
"outline.showInterfaces": false,
"outline.showFields": false,
"outline.showFiles": false,
"outline.showEnumMembers": false,
"outline.showEnums": false,
"outline.showConstants": false,
"outline.showArrays": false,
"outline.showBooleans": false,
"outline.showConstructors": false,
"outline.showEvents": false,
"outline.showModules": false,
"outline.showNumbers": false,
"outline.showObjects": false,
"outline.showProperties": false,
"git.ignoreRebaseWarning": true,
"prettier.requireConfig": true,
"redhat.telemetry.enabled": false,
"javascript.inlayHints.functionLikeReturnTypes.enabled": true,
"typescript.inlayHints.functionLikeReturnTypes.enabled": true,
"typescript.tsc.autoDetect": "off",
"openapi.approvedHostnames": ["*.iter-idea.com"],
"diffEditor.maxComputationTime": 0,
"json.schemas": [],
"editor.guides.bracketPairs": "active",
"editor.accessibilitySupport": "off",
"githubPullRequests.createOnPublishBranch": "never",
"yaml.customTags": [
"!And",
"!And sequence",
"!If",
"!If sequence",
"!Not",
"!Not sequence",
"!Equals",
"!Equals sequence",
"!Or",
"!Or sequence",
"!FindInMap",
"!FindInMap sequence",
"!Base64",
"!Join",
"!Join sequence",
"!Cidr",
"!Ref",
"!Sub",
"!Sub sequence",
"!GetAtt",
"!GetAZs",
"!ImportValue",
"!ImportValue sequence",
"!Select",
"!Select sequence",
"!Split",
"!Split sequence"
],
"todo-tree.general.tags": ["@todo"],
"editor.suggest.showMethods": true,
"editor.suggest.preview": true,
"editor.acceptSuggestionOnEnter": "on",
"editor.snippetSuggestions": "top",
"githubPullRequests.pullBranch": "never",
"extensions.ignoreRecommendations": true,
"aws.codeWhisperer.shareCodeWhispererContentWithAWS": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment