Skip to content

Instantly share code, notes, and snippets.

@rrapiteanu
Created October 24, 2022 16:22
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 rrapiteanu/b0e90dcea8919045278576f2e86a6e3c to your computer and use it in GitHub Desktop.
Save rrapiteanu/b0e90dcea8919045278576f2e86a6e3c to your computer and use it in GitHub Desktop.
vscode settings
{
"github.copilot.enable": {
"markdown": false,
"*": true,
"plaintext": false,
"yaml": true
},
"workbench.editor.showTabs": true,
"files.exclude": {
"**/.settings": true,
"**/.project": true,
"**/_build": true,
"**/obj": true,
"**/.next": true,
"**/node_modules": true,
"**/.hg": true,
"**/dist": true,
"**/.DS_Store": true,
"**/deps": true,
"**/bin": true,
"**/.svn": true,
"**/.factorypath": true,
"**/mix.lock": true,
"**/.git": true,
"**/CVS": true,
"**/.classpath": true
},
"editor.formatOnSave": true,
"editor.fontFamily": "Hack",
"workbench.editor.labelFormat": "short",
"editor.fontSize": 16,
"terminal.integrated.defaultProfile.windows": "Git Bash",
"editor.cursorBlinking": "phase",
"json.schemas": [],
"editor.accessibilitySupport": "off",
"workbench.iconTheme": "material-icon-theme",
"workbench.colorTheme": "One Dark Pro Monokai Darker",
"editor.minimap.enabled": false,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.inlineSuggest.enabled": true,
"git.confirmSync": false,
"terminal.integrated.fontFamily": "Hack Nerd Font",
"terminal.integrated.scrollback": 10000,
"security.workspace.trust.untrustedFiles": "open",
"editor.suggestSelection": "first",
"aws.profile": "profile:default",
"redhat.telemetry.enabled": false,
"breadcrumbs.enabled": true,
"emmet.excludeLanguages": ["typescript", "typescriptreact", "javascript"],
"[dart]": {
"editor.suggest.snippetsPreventQuickSuggestions": false,
"editor.suggestSelection": "first",
"editor.tabCompletion": "onlySnippets",
"editor.wordBasedSuggestions": false,
"editor.selectionHighlight": false,
"editor.formatOnSave": true,
"editor.formatOnType": true,
"editor.rulers": [80]
},
"search.exclude": {
"**/_build": true,
"**/obj": true,
"**/.next": true,
"**/node_modules": true,
"**/.hg": true,
"**/dist": true,
"**/.DS_Store": true,
"**/deps": true,
"**/bin": true,
"**/.svn": true,
"**/mix.lock": true,
"**/.git": true,
"**/CVS": true
},
"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"
],
"terminal.integrated.env.osx": {
"FIG_NEW_SESSION": "1"
},
"explorer.fileNesting.enabled": true,
"explorer.fileNesting.patterns": {
"pubspec.yaml": "pubspec.lock,pubspec_overrides.yaml,.packages,.flutter-plugins,.flutter-plugins-dependencies,.metadata",
"*.dart": "${capture}.g.dart",
"*.ts": "${capture}.typegen.ts",
"*.tsx": "${capture}.typegen.ts",
"*.mts": "${capture}.typegen.ts",
"*.cts": "${capture}.typegen.ts"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment