Last active
April 29, 2023 21:36
-
-
Save brandovidal/9881cc3cc97541b9b088eebe1f9e16aa to your computer and use it in GitHub Desktop.
Settings VS Code
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
{ | |
"breadcrumbs.enabled": false, | |
"editor.cursorBlinking": "expand", | |
"editor.cursorSmoothCaretAnimation": "on", | |
"editor.defaultFormatter": "dbaeumer.vscode-eslint", | |
"editor.fontFamily": "'FantasqueSansMono Nerd Font Mono', monospace", | |
"editor.fontLigatures": true, | |
"editor.fontSize": 12, | |
"editor.formatOnPaste": false, | |
"editor.guides.bracketPairs": true, | |
"editor.linkedEditing": true, | |
"editor.suggestSelection": "first", | |
"editor.rulers": [100], | |
"editor.stickyScroll.enabled": true, | |
"editor.tabSize": 2, | |
"editor.wordWrap": "off", | |
"explorer.confirmDelete": false, | |
"explorer.confirmDragAndDrop": false, | |
"explorer.excludeGitIgnore": false, | |
"files.autoSave": "onFocusChange", | |
"files.eol": "\n", | |
"github.copilot.enable": { | |
"*": true, | |
"plaintext": false, | |
"markdown": false, | |
"scminput": false | |
}, | |
"oneDarkPro.vivid": false, | |
"rapidapi.hub.enabled": true, | |
"rapidapi.requests.timeout": 30000, | |
"search.useGlobalIgnoreFiles": true, | |
"search.useIgnoreFiles": true, | |
"workbench.colorCustomizations": {}, | |
"workbench.colorTheme": "One Dark Pro Flat", | |
"workbench.iconTheme": "helium-icon-theme", | |
"workbench.sideBar.location": "right", | |
"[css]": { | |
"editor.defaultFormatter": "numso.prettier-standard-vscode" | |
}, | |
"[jsonc]": { | |
"editor.defaultFormatter": "rvest.vs-code-prettier-eslint" | |
}, | |
"[javascript]": { | |
"editor.defaultFormatter": "numso.prettier-standard-vscode" | |
}, | |
"[json]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[prisma]": { | |
"editor.defaultFormatter": "Prisma.prisma" | |
}, | |
"[rust]": { | |
"editor.defaultFormatter": "rust-lang.rust-analyzer" | |
}, | |
"[typescript]": { | |
"editor.defaultFormatter": "numso.prettier-standard-vscode" | |
}, | |
"[typescriptreact]": { | |
"editor.defaultFormatter": "vscode.typescript-language-features" | |
}, | |
"[toml]": { | |
"editor.defaultFormatter": "tamasfe.even-better-toml" | |
}, | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment