Skip to content

Instantly share code, notes, and snippets.

@elshanx
Last active April 22, 2021 12:31
Show Gist options
  • Save elshanx/34749110ad71d6a0f71eb51ef61cdbdd to your computer and use it in GitHub Desktop.
Save elshanx/34749110ad71d6a0f71eb51ef61cdbdd to your computer and use it in GitHub Desktop.
Visual Studio Code settings (JSON)
{
"editor.quickSuggestions": {
"other": true,
"comments": false,
"strings": true
},
"workbench.iconTheme": "material-icon-theme",
"editor.fontSize": 17,
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[javascriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[html]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[css]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[jsonc]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"prettier.jsxSingleQuote": true,
"prettier.singleQuote": true,
"editor.minimap.size": "fill",
"editor.suggestSelection": "recentlyUsed",
"files.associations": {
"*.js": "javascript"
},
"javascript.updateImportsOnFileMove.enabled": "always",
"editor.fontFamily": "Fira Code, 'Droid Sans Mono', monospace, 'Droid Sans Fallback'",
"editor.fontLigatures": true,
"editor.fontWeight": "400",
"terminal.integrated.fontSize": 16,
"workbench.colorTheme": "Tokyo Night",
"telemetry.enableCrashReporter": false,
"telemetry.enableTelemetry": false,
"terminal.integrated.shell.linux": "/usr/bin/zsh",
"editor.linkedEditing": true,
"editor.tabSize": 2,
"prettier.printWidth": 75,
"explorer.confirmDragAndDrop": false,
"git.autofetch": "all",
"gitlens.views.remotes.branches.layout": "list",
"editor.defaultFormatter": "esbenp.prettier-vscode",
"typescript.updateImportsOnFileMove.enabled": "always",
"files.autoSave": "onWindowChange",
"workbench.editor.enablePreview": true,
"prettier.trailingComma": "none",
"explorer.confirmDelete": false,
"tailwindCSS.includeLanguages": {
"plaintext": "html"
},
"tailwindCSS.emmetCompletions": true,
"vim.useSystemClipboard": true,
"vim.handleKeys": {
"<C-c>": false,
"<C-v>": false,
"<C-w>": false
},
"settingsSync.keybindingsPerPlatform": false,
"tslint.packageManager": "yarn",
"files.exclude": {
"**/node_modules*": true,
"**/yarn.lock*": true,
"**/.next": true
},
"eslint.run": "onSave",
"editor.suggest.snippetsPreventQuickSuggestions": false,
"diffEditor.ignoreTrimWhitespace": false,
"git.confirmSync": false,
"git.suggestSmartCommit": false,
"editor.formatOnSave": true,
"diffEditor.renderSideBySide": false,
"svg.preview.boundingBox": true,
"svg.preview.transparencyGrid": true,
"eslint.format.enable": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment