Created
April 8, 2024 12:32
-
-
Save rafaelfnaves/55cc5e3e38174247d9568e71000ba71d to your computer and use it in GitHub Desktop.
Vs Code Settings
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
{ | |
"editor.accessibilitySupport": "off", | |
"editor.fontFamily": "JetBrainsMono Nerd Font", | |
"editor.fontSize": 14, | |
"editor.lineHeight": 1.8, | |
"editor.rulers": [ | |
80, | |
120 | |
], | |
"editor.fontLigatures": true, | |
"terminal.integrated.automationProfile.osx": {}, | |
"workbench.productIconTheme": "fluent-icons", | |
"workbench.startupEditor": "newUntitledFile", | |
"editor.renderLineHighlight": "gutter", | |
"workbench.editor.labelFormat": "short", | |
"explorer.compactFolders": false, | |
"editor.semanticHighlighting.enabled": false, | |
"breadcrumbs.enabled": false, | |
"editor.minimap.enabled": false, | |
"editor.scrollbar.horizontal": "hidden", | |
"editor.scrollbar.vertical": "hidden", | |
"workbench.statusBar.visible": false, | |
"window.titleBarStyle": "native", | |
"explorer.fileNesting.enabled": true, | |
"explorer.fileNesting.patterns": { | |
"*.ts": "${capture}.js", | |
"*.js": "${capture}.js.map, ${capture}.min.js, ${capture}.d.ts", | |
"*.jsx": "${capture}.js", | |
"*.tsx": "${capture}.ts", | |
"tsconfig.json": "tsconfig.*.json", | |
"package.json": "package-lock.json, yarn.lock, pnpm-lock.yaml, bun.lockb", | |
".env": ".env*" | |
}, | |
"apc.electron": { | |
"titleBarStyle": "hiddenInset", | |
"trafficLightPosition": { | |
"x": 16, | |
"y": 12 | |
}, | |
"frame": false | |
}, | |
"apc.header": { | |
"height": 36 | |
}, | |
"apc.listRow": { | |
"height": 24 | |
}, | |
"apc.stylesheet": { | |
".title-label > h2": "display: none", | |
".editor-actions": "display: none", | |
".pane-header": "padding 0 8px", | |
".pane-body": "padding 8px" | |
}, | |
"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" | |
}, | |
"editor.codeActionsOnSave": { | |
"source.fixAll.eslint": "explicit", | |
"source.addMissingImports": "explicit" | |
}, | |
"[prisma]": { | |
"editor.formatOnSave": true | |
}, | |
"[ruby]": { | |
"editor.defaultFormatter": "Shopify.ruby-lsp", | |
"editor.formatOnType": true, | |
"editor.tabSize": 2, | |
"editor.insertSpaces": true, | |
"files.trimTrailingWhitespace": true, | |
"files.insertFinalNewline": true, | |
"files.trimFinalNewlines": true, | |
"editor.rulers": [ | |
120 | |
], | |
"editor.semanticHighlighting.enabled": true | |
}, | |
"rubocop.mode": "enableViaGemfile", | |
"editor.tabSize": 2, | |
"symbols.hidesExplorerArrows": false, | |
"terminal.integrated.defaultProfile.osx": "fish", | |
"update.showReleaseNotes": false, | |
"diffEditor.ignoreTrimWhitespace": false, | |
"editor.formatOnSave": true, | |
"editor.fontWeight": "normal", | |
"editor.fontVariations": false, | |
"window.zoomLevel": 1, | |
"workbench.iconTheme": "symbols", | |
"redhat.telemetry.enabled": true, | |
"settingsSync.ignoredExtensions": [ | |
"rubocop.vscode-rubocop", | |
"rebornix.ruby" | |
], | |
"typescript.updateImportsOnFileMove.enabled": "always", | |
"window.commandCenter": false, | |
"workbench.layoutControl.enabled": false, | |
"terminal.integrated.fontSize": 14, | |
"github.copilot.enable": { | |
"*": true, | |
"plaintext": false, | |
"markdown": false, | |
"scminput": false | |
}, | |
"emmet.includeLanguages": { | |
"js": "javascript" | |
}, | |
"emmet.showSuggestionsAsSnippets": true, | |
"remote.SSH.enableRemoteCommand": true, | |
"remote.SSH.remotePlatform": { | |
"orb": "linux" | |
}, | |
"terminal.integrated.fontFamily": "JetBrainsMono Nerd Font", | |
"workbench.colorTheme": "Omni", | |
"tabnine.experimentalAutoImports": true, | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment