Skip to content

Instantly share code, notes, and snippets.

@brandovidal
Last active April 29, 2023 21:36
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 brandovidal/9881cc3cc97541b9b088eebe1f9e16aa to your computer and use it in GitHub Desktop.
Save brandovidal/9881cc3cc97541b9b088eebe1f9e16aa to your computer and use it in GitHub Desktop.
Settings VS Code
{
"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