Skip to content

Instantly share code, notes, and snippets.

@crisu83
Last active March 28, 2023 14:08
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 crisu83/0bc7e9fadc434798935270322be7c7ce to your computer and use it in GitHub Desktop.
Save crisu83/0bc7e9fadc434798935270322be7c7ce to your computer and use it in GitHub Desktop.
My VSCode settings
{
"[rust]": {
"editor.formatOnSave": true
},
"[typescript]": {
"editor.formatOnSave": true
},
"[typescriptreact]": {
"editor.formatOnSave": true
},
"debug.javascript.autoAttachFilter": "smart",
"editor.bracketPairColorization.enabled": true,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"editor.codeLens": false,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.fontFamily": "Operator Mono Lig",
"editor.fontLigatures": true,
"editor.fontSize": 14,
"editor.inlayHints.enabled": "off",
"editor.inlineSuggest.enabled": true,
"editor.tabSize": 2,
"explorer.confirmDelete": false,
"explorer.confirmDragAndDrop": false,
"javascript.updateImportsOnFileMove.enabled": "always",
"security.workspace.trust.untrustedFiles": "open",
"workbench.colorTheme": "Night Owl",
"workbench.iconTheme": "vscode-icons",
"workbench.sideBar.location": "right",
"terminal.external.osxExec": "warp.app",
"terminal.integrated.defaultProfile.osx": "zsh",
"typescript.tsdk": "node_modules/typescript/lib",
"typescript.preferences.importModuleSpecifier": "relative",
"typescript.updateImportsOnFileMove.enabled": "always"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment