Skip to content

Instantly share code, notes, and snippets.

@jonasexplore
Last active September 6, 2023 12:47
Show Gist options
  • Save jonasexplore/0bb006c05988ff1514163f2d15da8533 to your computer and use it in GitHub Desktop.
Save jonasexplore/0bb006c05988ff1514163f2d15da8533 to your computer and use it in GitHub Desktop.
{
"terminal.integrated.fontFamily": "JetBrains Mono",
"workbench.tree.indent": 15,
"terminal.integrated.fontSize": 14,
"workbench.iconTheme": "symbols",
"workbench.startupEditor": "newUntitledFile",
"editor.tabSize": 2,
"editor.fontSize": 14,
"editor.lineHeight": 26,
"editor.fontFamily": "JetBrains Mono",
"editor.fontLigatures": true,
"terminal.integrated.showExitAlert": false,
"terminal.integrated.allowMnemonics": true,
"terminal.integrated.tabs.enabled": true,
"workbench.colorCustomizations": {
"editorRuler.foreground": "#f75c71"
},
"editor.minimap.size": "fill",
"editor.semanticHighlighting.enabled": false,
"editor.rulers": [
80,
120
],
"editor.suggestSelection": "first",
"editor.renderLineHighlightOnlyWhenFocus": true,
"editor.renderLineHighlight": "gutter",
"editor.linkedEditing": true,
"editor.renderWhitespace": "none",
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true,
"source.organizeImports": false,
"source.sortImports": false
},
"editor.formatOnSave": true,
"editor.autoClosingBrackets": "always",
"editor.autoClosingOvertype": "auto",
"files.associations": {
".sequelizerc": "javascript",
".stylelintrc": "json",
".prettierrc": "json",
"*.tsx": "typescriptreact",
"*.ts": "typescript"
},
"window.menuBarVisibility": "toggle",
"workbench.editor.labelFormat": "short",
"files.exclude": {
"**/env": true,
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/node_modules": true,
"**/.vscode": false,
"**/__pycache__": true,
"**/.ipynb_checkpoints": true
},
"emmet.excludeLanguages": [
"markdown",
// "javascript",
// "javascriptreact",
// "typescript",
// "typescriptreact"
],
"gitlens.codeLens.recentChange.enabled": true,
"gitlens.codeLens.authors.enabled": true,
"gitlens.codeLens.enabled": true,
"explorer.confirmDelete": false,
"explorer.confirmDragAndDrop": false,
"explorer.compactFolders": false,
"javascript.updateImportsOnFileMove.enabled": "always",
"typescript.updateImportsOnFileMove.enabled": "always",
"typescript.tsserver.log": "off",
"html.suggest.html5": true,
"extensions.ignoreRecommendations": true,
"breadcrumbs.enabled": true,
"workbench.editorAssociations": {
"*.ipynb": "jupyter-notebook"
},
"editor.inlineSuggest.enabled": true,
"[handlebars]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[prisma]": {
"editor.defaultFormatter": "Prisma.prisma"
},
"notebook.cellToolbarLocation": {
"default": "right",
"jupyter-notebook": "left"
},
"workbench.colorTheme": "Rosé Pine",
"diffEditor.ignoreTrimWhitespace": false,
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[html]": {
"editor.defaultFormatter": "vscode.html-language-features"
},
"[jsonc]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[typescriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[less]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"editor.stickyScroll.enabled": true,
"editor.largeFileOptimizations": false,
"terminal.integrated.defaultProfile.windows": "Git Bash",
"git.ignoreRebaseWarning": true,
"workbench.productIconTheme": "fluent-icons",
"git.autofetch": true,
"github.copilot.enable": {
"*": true,
"yaml": false,
"plaintext": false,
"markdown": false
},
"vs-kubernetes": {
"disable-linters": [
"resource-limits"
],
"vscode-kubernetes.minikube-path.linux": "/home/jonasexplore/.local/state/vs-kubernetes/tools/minikube/linux-amd64/minikube",
"vscode-kubernetes.helm-path.linux": "/home/jonasexplore/.local/state/vs-kubernetes/tools/helm/linux-amd64/helm"
},
"redhat.telemetry.enabled": false,
"git.openRepositoryInParentFolders": "never",
"[python]": {
"editor.formatOnType": true
},
"css.lint.unknownAtRules": "ignore",
"liveServer.settings.donotShowInfoMsg": true,
"symbols.hidesExplorerArrows": false,
"symbols.files.associations": {
"*.int-spec.ts": "ts-test"
},
"window.zoomLevel": 1,
"[yaml]": {
"editor.insertSpaces": true,
"editor.tabSize": 2,
"editor.autoIndent": "keep",
"diffEditor.ignoreTrimWhitespace": false,
"editor.quickSuggestions": {
"other": true,
"comments": false,
"strings": true
}
},
"sonarlint.rules": {
"typescript:S6550": {
"level": "off"
}
},
"jestrunner.codeLensSelector": "**/*.{test,spec,int-spec}.{js,jsx,ts,tsx}"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment