Last active
March 28, 2023 14:08
-
-
Save crisu83/0bc7e9fadc434798935270322be7c7ce to your computer and use it in GitHub Desktop.
My VSCode 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
{ | |
"[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