Skip to content

Commit

Permalink
Tidy vscode settings
Browse files Browse the repository at this point in the history
  • Loading branch information
AlecRust committed Nov 8, 2023
1 parent afb92da commit cced3a1
Showing 1 changed file with 8 additions and 22 deletions.
30 changes: 8 additions & 22 deletions configs/vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,35 +3,28 @@
"editor.fontFamily": "Fira Code, monospace",
"editor.fontSize": 17,
"editor.lineHeight": 28,
"editor.minimap.showSlider": "always",
"editor.renderWhitespace": "boundary",
"editor.rulers": [80, 120],
"editor.tabSize": 2,
"editor.wordWrap": "on",
"editor.snippetSuggestions": "top",
"editor.inlineSuggest.enabled": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.minimap.showSlider": "always",
// Explorer
"explorer.autoReveal": false,
"explorer.confirmDelete": false,
"explorer.confirmDragAndDrop": false,
// Workbench
"workbench.editor.highlightModifiedTabs": true,
// Window
"window.newWindowDimensions": "inherit",
"window.openFoldersInNewWindow": "on",
"window.title": "${activeEditorMedium}${separator}${rootName}",
"workbench.colorCustomizations": {},
"workbench.editor.decorations.badges": true,
"workbench.editor.decorations.colors": true,
"workbench.editor.enablePreviewFromQuickOpen": false,
"workbench.editor.highlightModifiedTabs": true,
"workbench.sideBar.location": "left",
"workbench.statusBar.visible": true,
// Security
"security.workspace.trust.untrustedFiles": "open",
// Terminal
"terminal.external.osxExec": "Warp.app",
"terminal.integrated.fontSize": 15,
"terminal.integrated.fontFamily": "FiraCode Nerd Font, monospace",
"terminal.integrated.shell.osx": "/opt/homebrew/bin/zsh",
// Git
"git.enableSmartCommit": true,
"git.allowForcePush": true,
Expand All @@ -42,33 +35,26 @@
"typescript.updateImportsOnFileMove.enabled": "always",
"javascript.updateImportsOnFileMove.enabled": "always",
"javascript.validate.enable": false,
"phpfmt.indent_with_space": 2,
// Disable telemetry
"telemetry.telemetryLevel": "off",
"redhat.telemetry.enabled": false,
"gitlens.advanced.telemetry.enabled": false,
// CodeGPT extension
"CodeGPT.model": "gpt-4",
"gitlens.telemetry.enabled": false,
"githubPullRequests.telemetry.enabled": false,
// GitHub Copilot extension
"github.copilot.enable": {
"*": true,
"yaml": true,
"plaintext": true,
"markdown": true
},
// GitHub Pull Requests extension
"githubPullRequests.telemetry.enabled": false,
"githubPullRequests.commentExpandState": "collapseAll",
"githubPullRequests.pullBranch": "never",
// phpfmt extension
"phpfmt.indent_with_space": 2,
// Home Assistant extension
"vscode-home-assistant.ignoreCertificates": true,
// GitLens extension
"gitlens.blame.highlight.enabled": false,
"gitlens.codeLens.authors.enabled": false,
"gitlens.codeLens.recentChange.enabled": false,
"gitlens.currentLine.scrollable": false,
// Code Spell Checker extension
"cSpell.enabled": true,
// Default formatter
"editor.defaultFormatter": "esbenp.prettier-vscode",
}

0 comments on commit cced3a1

Please sign in to comment.