Last active
September 5, 2024 11:21
-
-
Save dylanjcastillo/ce7d4cf7759e15d98212a108158cecc8 to your computer and use it in GitHub Desktop.
VSCode Settings
This file contains 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
{ | |
"[javascript]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[django-html]": { | |
"editor.defaultFormatter": "monosans.djlint" | |
}, | |
"[html]": { | |
"editor.defaultFormatter": "monosans.djlint" | |
}, | |
"[css]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[scss]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[json]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[jsonc]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[python]": { | |
"editor.defaultFormatter": "charliermarsh.ruff", | |
"editor.formatOnType": true | |
}, | |
"[yaml]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[handlebars]": { | |
"editor.defaultFormatter": "vscode.html-language-features" | |
}, | |
"autoDocstring.docstringFormat": "google", | |
"editor.fontFamily": "FiraCode-Retina", | |
"editor.fontLigatures": true, | |
"editor.formatOnSave": false, | |
"editor.minimap.enabled": false, | |
"editor.renderWhitespace": "none", | |
"editor.scrollBeyondLastLine": false, | |
"emmet.includeLanguages": { | |
"jinja-html": "html", | |
"django-html": "html" | |
}, | |
"explorer.confirmDelete": false, | |
"files.associations": { | |
"**/*.html": "html", | |
"**/components/**/*.html": "django-html", | |
"**/templates/**/*.html": "django-html", | |
"**/templates/**/*": "django-txt", | |
"**/requirements{/**,*}.{txt,in}": "pip-requirements", | |
"*.qmd": "markdown" | |
}, | |
"files.autoSave": "afterDelay", | |
"files.insertFinalNewline": true, | |
"git.autofetch": true, | |
"git.path": null, | |
"jupyter.askForKernelRestart": false, | |
"terminal.integrated.profiles.windows": { | |
"zsh": { | |
"path": "/bin/zsh" | |
} | |
}, | |
"terminal.integrated.defaultProfile.windows": "zsh", | |
"vim.foldfix": true, | |
"vim.leader": "\\", | |
"vim.useSystemClipboard": true, | |
"vsicons.dontShowNewVersionMessage": true, | |
"window.nativeTabs": true, | |
"workbench.colorCustomizations": { | |
"statusBar.background": "#005f5f", | |
"statusBar.noFolderBackground": "#005f5f", | |
"statusBar.debuggingBackground": "#005f5f" | |
}, | |
"workbench.iconTheme": "vscode-icons", | |
"workbench.sideBar.location": "left", | |
"workbench.tree.indent": 4, | |
"workbench.editorAssociations": { | |
"*.ipynb": "jupyter-notebook" | |
}, | |
"notebook.cellToolbarLocation": { | |
"default": "right", | |
"jupyter-notebook": "left" | |
}, | |
"editor.inlineSuggest.enabled": true, | |
"jupyter.widgetScriptSources": ["jsdelivr.com", "unpkg.com"], | |
"notebook.lineNumbers": "on", | |
"liveServer.settings.donotShowInfoMsg": true, | |
"liveServer.settings.donotVerifyTags": true, | |
"[dockercompose]": { | |
"editor.defaultFormatter": "ms-azuretools.vscode-docker" | |
}, | |
"diffEditor.ignoreTrimWhitespace": false, | |
"git.openRepositoryInParentFolders": "never", | |
"workbench.colorTheme": "One Dark Pro", | |
"extensions.ignoreRecommendations": true, | |
"git.confirmSync": false, | |
"djlint.formatJs": true, | |
"djlint.formatCss": true, | |
"[vue]": { | |
"editor.defaultFormatter": "Vue.volar" | |
}, | |
"tailwindCSS.includeLanguages": { | |
"vue": "html", | |
"vue-html": "html", | |
"python": "html", | |
"django-html": "html" | |
}, | |
"editor.tokenColorCustomizations": { | |
"textMateRules": [] | |
}, | |
"editor.quickSuggestions": { | |
"strings": true | |
}, | |
"[py]": { | |
"tailwindCSS.experimental.classRegex": ["\\bclass=\"([^\"]*)\""] | |
}, | |
"[typescript]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"security.workspace.trust.untrustedFiles": "open", | |
"svelte.enable-ts-plugin": true, | |
"[svelte]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"cursor.cpp.disabledLanguages": ["plaintext", "scminput"], | |
"vim.normalModeKeyBindingsNonRecursive": [ | |
{ | |
"before": ["<space>"], | |
"commands": ["workbench.action.showCommands"] | |
} | |
], | |
"ruff.organizeImports": true, | |
"python.envFile": "", | |
"terminal.integrated.enableMultiLinePasteWarning": false, | |
"window.customTitleBarVisibility": "never", | |
"terminal.external.osxExec": "Alacritty.app", | |
"terminal.integrated.fontFamily": "FiraCode Nerd Font", | |
"explorer.fileNesting.patterns": { | |
"*.ts": "${capture}.js", | |
"*.js": "${capture}.js.map, ${capture}.min.js, ${capture}.d.ts", | |
"*.jsx": "${capture}.js", | |
"*.tsx": "${capture}.ts", | |
"tsconfig.json": "tsconfig.*.json", | |
"package.json": "package-lock.json, yarn.lock, pnpm-lock.yaml, bun.lockb", | |
"*.sqlite": "${capture}.${extname}-*", | |
"*.db": "${capture}.${extname}-*", | |
"*.sqlite3": "${capture}.${extname}-*", | |
"*.db3": "${capture}.${extname}-*", | |
"*.sdb": "${capture}.${extname}-*", | |
"*.s3db": "${capture}.${extname}-*" | |
}, | |
"[javascriptreact]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[typescriptreact]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"javascript.updateImportsOnFileMove.enabled": "never" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment