Skip to content

Instantly share code, notes, and snippets.

@altaywtf
Created September 18, 2024 16:43
Show Gist options
  • Save altaywtf/f796ca7e93f47ffe13f7a0cd37af8a57 to your computer and use it in GitHub Desktop.
Save altaywtf/f796ca7e93f47ffe13f7a0cd37af8a57 to your computer and use it in GitHub Desktop.
vscode-settings.json
{
"diffEditor.ignoreTrimWhitespace": false,
"editor.accessibilitySupport": "off",
"editor.codeActionsOnSave": {
"source.fixAll.eslint": "explicit"
},
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.fontFamily": "Berkeley Mono",
"editor.fontLigatures": true,
"editor.fontSize": 16,
"editor.formatOnSave": true,
"editor.inlineSuggest.enabled": true,
"editor.minimap.enabled": false,
"editor.suggestSelection": "first",
"editor.tabSize": 2,
"eslint.workingDirectories": [
{
"mode": "auto"
}
],
"explorer.excludeGitIgnore": false,
"extensions.ignoreRecommendations": true,
"files.associations": {
"*.css": "tailwindcss"
},
"files.trimFinalNewlines": true,
"files.trimTrailingWhitespace": true,
"git.allowForcePush": true,
"git.autofetch": true,
"git.confirmSync": false,
"git.enableCommitSigning": true,
"git.enableSmartCommit": true,
"git.pullTags": false,
"git.rebaseWhenSync": true,
"git.showPushSuccessNotification": true,
"github.copilot.editor.enableAutoCompletions": true,
"github.copilot.enable": {
"*": true,
"markdown": true,
"plaintext": false,
"scminput": false
},
"gitlens.launchpad.indicator.enabled": false,
"redhat.telemetry.enabled": false,
"security.workspace.trust.untrustedFiles": "open",
"terminal.integrated.defaultProfile.osx": "zsh",
"terminal.integrated.fontFamily": "Berkeley Mono",
"terminal.integrated.fontSize": 14,
"window.confirmSaveUntitledWorkspace": false,
"window.customTitleBarVisibility": "never",
"window.nativeTabs": true,
"workbench.startupEditor": "none"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment