Skip to content

Instantly share code, notes, and snippets.

@danielkellyio
Last active September 21, 2023 13:36
Show Gist options
  • Save danielkellyio/fb9530e20cd2c19d1e58bd7b921386a3 to your computer and use it in GitHub Desktop.
Save danielkellyio/fb9530e20cd2c19d1e58bd7b921386a3 to your computer and use it in GitHub Desktop.
VS Code Settings (for Recording)
{
"css.validate": false,
"tailwindCSS.emmetCompletions": true,
"workbench.colorTheme": "Material Theme Darker High Contrast",
"git.autofetch": true,
"editor.fontSize": 14,
"editor.fontFamily": "JetBrains Mono",
"editor.fontLigatures": true,
// "eslint.format.enable": true,
// "editor.formatOnSaveMode": "modifications",
"editor.formatOnSave": false,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"explorer.confirmDelete": false,
"[toml]": {
"editor.formatOnSave": false
},
"files.exclude": {
"**/.idea": true
},
"editor.quickSuggestions": {
"other": true,
"comments": true,
"strings": true
},
"editor.wordBasedSuggestions": true,
"editor.suggestOnTriggerCharacters": true,
"screencastMode.onlyKeyboardShortcuts": true,
"editor.tabCompletion": "on",
"todo-tree.tree.showScanModeButton": false,
"workbench.editor.decorations.colors": true,
"cssPeek.peekFromLanguages": [
"html",
"django-html",
"laravel-blade",
"razor",
"vue",
"blade",
"pug",
"jade",
"handlebars",
"php",
"twig",
"md",
"nunjucks",
"javascript",
"javascriptreact",
"erb",
"typescript",
"typescriptreact",
"HTML (Eex)",
"html-eex",
"ejs",
"vue"
],
"workbench.iconTheme": "material-icon-theme",
"yaml.schemas": {
"file:///Users/danielkelly/.vscode/extensions/atlassian.atlascode-2.10.9/resources/schemas/pipelines-schema.json": "bitbucket-pipelines.yml"
},
"atlascode.bitbucket.enabled": true,
"atlascode.jira.enabled": false,
"workbench.colorCustomizations": {
"peekView.border": "#82aaff",
"peekViewEditor.background": "#0f0f0f",
"peekViewEditorGutter.background": "#0f0f0f",
"peekViewTitle.background": "#0f0f0f",
"peekViewResult.background": "#0f0f0f",
"textLink.activeForeground": "#3076f6"
},
// "terminal.integrated.shell.osx": "/bin/bash",
"editor.glyphMargin": false,
"editor.minimap.enabled": false,
"editor.lineHeight": 35,
// "svelte.plugin.typescript.signatureHelp.enable": false,
"zenMode.hideLineNumbers": false,
"zenMode.centerLayout": false,
"editor.parameterHints.enabled": false,
"editor.tabSize": 2,
"editor.detectIndentation": false,
"editor.cursorBlinking": "solid",
"javascript.updateImportsOnFileMove.enabled": "always",
"redhat.telemetry.enabled": false,
"editor.suggest.showInterfaces": true,
"editor.renderLineHighlight": "none",
"editor.suggest.snippetsPreventQuickSuggestions": true,
"editor.lightbulb.enabled": true,
"editor.hover.sticky": true,
"editor.hover.enabled": true,
"breadcrumbs.enabled": false,
"editor.occurrencesHighlight": false,
"editor.selectionHighlight": true,
"editor.showDeprecated": true,
"autoimport.useSemiColon": false,
"editor.inlineSuggest.enabled": true,
"github.copilot.enable": false,
"scm.diffDecorations": "none",
"liveServer.settings.donotVerifyTags": true,
"liveServer.settings.donotShowInfoMsg": true,
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"terminal.integrated.env.osx": {
"FIG_NEW_SESSION": "1"
},
"editor.accessibilitySupport": "off",
"editor.suggest.showStructs": true,
"[vue]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[html]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"javascript.preferences.importModuleSpecifier": "non-relative",
"editor.suggest.showVariables": true,
"editor.suggest.showFields": true,
"editor.suggest.showEnumMembers": true,
"editor.suggest.showConstants": true,
"editor.suggest.showUsers": true,
"editor.suggest.showEvents": true,
"editor.suggest.showEnums": true,
"editor.suggest.showUnits": true,
"editor.suggest.showWords": true,
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"svelte.enable-ts-plugin": true,
"workbench.statusBar.visible": false,
"window.zoomLevel": 2,
"workbench.activityBar.visible": false,
"editor.unicodeHighlight.invisibleCharacters": false,
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment