Created
March 6, 2024 03:11
-
-
Save jcarloasilo/f468334c0d0fd883c0f748d4b38cdf14 to your computer and use it in GitHub Desktop.
Vscode user 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
| { | |
| "explorer.confirmDragAndDrop": false, | |
| "editor.defaultFormatter": "esbenp.prettier-vscode", | |
| "[search-result]": { | |
| "editor.lineNumbers": "off" | |
| }, | |
| "workbench.editorAssociations": { | |
| "*.ipynb": "jupyter.notebook.ipynb" | |
| }, | |
| "html.format.templating": true, | |
| "editor.codeActionsOnSave": null, | |
| // "prettier.printWidth": 80, | |
| "explorer.confirmDelete": false, | |
| "terminal.integrated.tabs.enabled": true, | |
| "terminal.integrated.defaultProfile.windows": "Git Bash", | |
| "editor.rulers": [78, 80, 100], | |
| "javascript.updateImportsOnFileMove.enabled": "always", | |
| "files.autoSaveDelay": 30000, | |
| "files.associations": { | |
| "*.html": "html" | |
| }, | |
| "material-icon-theme.files.associations": {}, | |
| "emmet.includeLanguages": { | |
| "javascript": "javascriptreact" | |
| }, | |
| "workbench.iconTheme": "material-icon-theme", | |
| "workbench.startupEditor": "none", | |
| "terminal.integrated.enableMultiLinePasteWarning": false, | |
| "typescript.updateImportsOnFileMove.enabled": "always", | |
| "json.schemas": [], | |
| "[prisma]": { | |
| "editor.defaultFormatter": "Prisma.prisma" | |
| }, | |
| "editor.cursorBlinking": "expand", | |
| "[typescript]": { "editor.defaultFormatter": "esbenp.prettier-vscode" }, | |
| "[typescriptreact]": { | |
| "editor.defaultFormatter": "esbenp.prettier-vscode" | |
| }, | |
| "editor.wordWrap": "on", | |
| "tailwindCSS.includeLanguages": { | |
| "plaintext": "javascript" | |
| }, | |
| "editor.quickSuggestions": { | |
| "strings": true | |
| }, | |
| "css.lint.unknownAtRules": "ignore", | |
| "totalTypeScript.hideAllTips": false, | |
| "totalTypeScript.hideBasicTips": false, | |
| "totalTypeScript.hiddenTips": [ | |
| "ts-object-type", | |
| "basic-types", | |
| "type-alias-declaration", | |
| "array-type", | |
| "variable-type-annotation", | |
| "passing-generics-to-types", | |
| "typing-function-parameters", | |
| "union-type", | |
| "null-keyword", | |
| "optional-object-property", | |
| "as-assertion", | |
| "function-return-type", | |
| "any-type", | |
| "typeof", | |
| "type-alias-with-generics", | |
| "keyof", | |
| "omit-utility-type", | |
| "generic-slots-in-functions", | |
| "literal-type", | |
| "undefined-keyword", | |
| "interface-declaration", | |
| "mapped-type", | |
| "non-null-expression", | |
| "tuple-type", | |
| "as-const", | |
| "record-utility-type", | |
| "returntype-utility-type", | |
| "conditional-type", | |
| "nested-conditional-type", | |
| "uppercase-utility-type", | |
| "never-keyword", | |
| "infer", | |
| "awaited-utility-type", | |
| "parameters-utility-type", | |
| "extract-utility-type", | |
| "exclude-utility-type", | |
| "as-const-on-object", | |
| "type-alias-with-multiple-generics", | |
| "remapping-in-mapped-type" | |
| ], | |
| "security.workspace.trust.untrustedFiles": "open", | |
| "terminal.integrated.profiles.windows": { | |
| "PowerShell": { | |
| "source": "PowerShell", | |
| "icon": "terminal-powershell" | |
| }, | |
| "Command Prompt": { | |
| "path": [ | |
| "${env:windir}\\Sysnative\\cmd.exe", | |
| "${env:windir}\\System32\\cmd.exe" | |
| ], | |
| "args": [], | |
| "icon": "terminal-cmd" | |
| }, | |
| "Git Bash": { | |
| "source": "Git Bash" | |
| }, | |
| "Ubuntu (WSL)": { | |
| "path": "C:\\WINDOWS\\System32\\wsl.exe", | |
| "args": ["-d", "Ubuntu"] | |
| } | |
| }, | |
| "reactSnippets.settings.importReactOnTop": false, | |
| "[go]": { | |
| "editor.defaultFormatter": "golang.go" | |
| }, | |
| "errorLens.excludeBySource": ["ts(2741)"], | |
| "aws.telemetry": false, | |
| "terminal.explorerKind": "external", | |
| "diffEditor.ignoreTrimWhitespace": false, | |
| "python.formatting.provider": "black", | |
| "terminal.integrated.cursorStyle": "line", | |
| "svelte.enable-ts-plugin": true, | |
| "glassit.alpha": 255, | |
| "workbench.editor.labelFormat": "short", | |
| "explorer.compactFolders": false, | |
| "workbench.tree.indent": 20, | |
| "workbench.colorCustomizations": { | |
| "terminal.background": "#1C2023", | |
| "terminal.foreground": "#C7CCD1", | |
| "terminalCursor.background": "#C7CCD1", | |
| "terminalCursor.foreground": "#C7CCD1", | |
| "terminal.ansiBlack": "#1C2023", | |
| "terminal.ansiBlue": "#AE95C7", | |
| "terminal.ansiBrightBlack": "#747C84", | |
| "terminal.ansiBrightBlue": "#AE95C7", | |
| "terminal.ansiBrightCyan": "#95AEC7", | |
| "terminal.ansiBrightGreen": "#95C7AE", | |
| "terminal.ansiBrightMagenta": "#C795AE", | |
| "terminal.ansiBrightRed": "#C7AE95", | |
| "terminal.ansiBrightWhite": "#F3F4F5", | |
| "terminal.ansiBrightYellow": "#AEC795", | |
| "terminal.ansiCyan": "#95AEC7", | |
| "terminal.ansiGreen": "#95C7AE", | |
| "terminal.ansiMagenta": "#C795AE", | |
| "terminal.ansiRed": "#C7AE95", | |
| "terminal.ansiWhite": "#C7CCD1", | |
| "terminal.ansiYellow": "#AEC795" | |
| }, | |
| "editor.fontWeight": "500", | |
| "editor.largeFileOptimizations": false, | |
| "editor.fontLigatures": true, | |
| "go.toolsManagement.autoUpdate": true, | |
| "editor.fontVariations": false, | |
| "editor.formatOnSave": true, | |
| "[svelte]": { | |
| "editor.defaultFormatter": "svelte.svelte-vscode" | |
| }, | |
| "workbench.colorTheme": "Kanagawa Dragon", | |
| "editor.fontSize": 15, | |
| "remote.autoForwardPortsSource": "hybrid" | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment