Last active
April 8, 2024 17:15
-
-
Save sammarxz/e2915706f22e01f570d099741d8dec4c to your computer and use it in GitHub Desktop.
VScode personal config
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
{ | |
"window.menuBarVisibility": "toggle", | |
"workbench.startupEditor": "newUntitledFile", | |
"workbench.iconTheme": "symbols", | |
"workbench.colorTheme": "Min Dark", | |
"workbench.productIconTheme": "fluent-icons", | |
"workbench.editor.labelFormat": "short", | |
"window.zoomLevel": -0.5, | |
"window.titleBarStyle": "custom", | |
"editor.fontFamily": "'Fira Code', monospace", | |
"editor.fontLigatures": true, | |
"editor.fontSize": 14, | |
"editor.lineHeight": 28, | |
"editor.tabSize": 2, | |
"editor.parameterHints.enabled": false, | |
"editor.renderLineHighlight": "gutter", | |
"editor.suggestSelection": "first", | |
"editor.accessibilitySupport": "off", | |
"editor.semanticHighlighting.enabled": false, | |
"editor.codeActionsOnSave": { | |
"source.fixAll.eslint": "explicit" | |
}, | |
"editor.rulers": [ | |
80, | |
120 | |
], | |
"editor.minimap.autohide": true, | |
"[prisma]": { | |
"editor.formatOnSave": true | |
}, | |
"explorer.confirmDelete": false, | |
"explorer.confirmDragAndDrop": false, | |
"explorer.compactFolders": false, | |
"terminal.integrated.showExitAlert": false, | |
"terminal.integrated.fontSize": 14, | |
"terminal.integrated.fontFamily": "monospace", | |
"terminal.integrated.env.linux": {}, | |
"terminal.integrated.defaultProfile.windows": "Git Bash", | |
"javascript.suggest.autoImports": true, | |
"javascript.updateImportsOnFileMove.enabled": "always", | |
"typescript.tsserver.log": "off", | |
"typescript.updateImportsOnFileMove.enabled": "never", | |
"typescript.suggest.autoImports": true, | |
"git.autofetch": true, | |
"git.enableSmartCommit": true, | |
"git.confirmSync": false, | |
"files.associations": { | |
".sequelizerc": "javascript", | |
".stylelintrc": "json", | |
"*.tsx": "typescriptreact", | |
".env.*": "dotenv", | |
".prettierrc": "json" | |
}, | |
"files.exclude": { | |
"**\/CVS": true, | |
"**\/.DS_Store": true, | |
"**\/.hg": true, | |
"**\/.svn": true, | |
"**\/.git": true, | |
"node_modules": true | |
}, | |
"extensions.ignoreRecommendations": true, | |
"emmet.includeLanguages": { | |
"javascript": "javascriptreact" | |
}, | |
"security.workspace.trust.untrustedFiles": "newWindow", | |
"[typescriptreact]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode", | |
"editor.formatOnSave": true | |
}, | |
"symbols.hidesExplorerArrows": false, | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment