Last active
August 7, 2023 16:18
-
-
Save AlphaLawless/97b5a407f569e8cab7956e1ecbb87688 to your computer and use it in GitHub Desktop.
My VSCodium Settings Minimal
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
{ | |
// Emmet | |
"emmet.syntaxProfiles": { | |
"javascript": "jsx" | |
}, | |
"emmet.includeLanguages": { | |
"javascript": "javascriptreact" | |
}, | |
// Editor | |
"editor.minimap.enabled": false, | |
"editor.fontLigatures": true, | |
"editor.rulers": [80, 120], | |
"editor.tabSize": 2, | |
"workbench.startupEditor": "newUntitledFile", | |
"workbench.colorTheme": "One Dark Pro Darker", | |
"workbench.editor.enablePreviewFromQuickOpen": true, | |
"workbench.editor.enablePreview": false, | |
"workbench.editor.untitled.hint": "hidden", | |
// Window | |
"window.restoreWindows": "none", | |
// Fonts | |
"editor.fontFamily": "JetBrains Mono", | |
// Folders | |
"explorer.compactFolders": false, | |
"files.exclude": { | |
"**/.git": true, | |
"**/.svn": true, | |
"**/.hg": true, | |
"**/CVS": true, | |
"**/.DS_Store": true, | |
"**/node_modules": true, | |
"**/__pycache__": true | |
}, | |
// Formate | |
"editor.formatOnSave": true, | |
"editor.formatOnPaste": true, | |
"editor.formatOnType": true, | |
// Prettier | |
"editor.defaultFormatter": "esbenp.prettier-vscode", | |
// Material Theme | |
"material-icon-theme.activeIconPack": "nest", | |
"material-icon-theme.folders.associations": { | |
"infra": "app", | |
"entities": "class", | |
"domain": "class", | |
"schemas": "class", | |
"typeorm": "database", | |
"repositories": "mappings", | |
"http": "container", | |
"migrations": "tools", | |
"modules": "components", | |
"implementations": "core", | |
"dtos": "typescript", | |
"fakes": "mock", | |
"websockets": "pipe", | |
"protos": "pipe", | |
"grpc": "pipe", | |
"providers": "include", | |
"subscribers": "messages", | |
"useCases": "controller", | |
"kafka": "scripts", | |
"mappers": "meta", | |
"_shared": "shared", | |
"eslint-config": "tools", | |
"kube": "kubernetes" | |
}, | |
"material-icon-theme.files.associations": { | |
"ormconfig.json": "database", | |
"tsconfig.json": "tune", | |
"*.webpack.js": "webpack" | |
}, | |
// Terminal Integrted | |
"terminal.integrated.env.osx": { | |
"FIG_NEW_SESSION": "1" | |
}, | |
"terminal.integrated.fontFamily": "JetBrainsMono Nerd Font", | |
"typescript.suggest.autoImports": true, | |
"telemetry.telemetryLevel": "off", | |
"window.zoomLevel": 1, | |
"workbench.iconTheme": "material-icon-theme" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment