Skip to content

Instantly share code, notes, and snippets.

@adarsh-chakraborty
Created November 8, 2021 14:39
Show Gist options
  • Save adarsh-chakraborty/7033cc47f278e58ff1d92dc63b03c3d6 to your computer and use it in GitHub Desktop.
Save adarsh-chakraborty/7033cc47f278e58ff1d92dc63b03c3d6 to your computer and use it in GitHub Desktop.
VS Code Settings
{
"explorer.confirmDelete": false,
"editor.fontFamily": "Operator Mono,Cascadia Code,'Fira Code', Menlo, monospace, consolas",
"editor.fontSize": 15,
"terminal.integrated.fontFamily": "Cascadia Code",
"editor.fontLigatures": true,
"prettier.trailingComma": "none",
"prettier.singleQuote": true,
"prettier.semi": true,
"javascript.updateImportsOnFileMove.enabled": "always",
"workbench.colorCustomizations": {},
"workbench.editor.enablePreview": false,
"terminal.integrated.tabs.enabled": true,
"editor.linkedEditing": true,
"editor.codeActionsOnSave": {
"source.fixAll": true
},
"tailwindCSS.emmetCompletions": true,
"bracketPairColorizer.consecutivePairColors": [
"()",
"[]",
"{}",
["#f0af72", "#7dc0ff", "#8fc062"],
"#ff5b1a"
],
"workbench.iconTheme": "material-icon-theme",
"workbench.startupEditor": "none",
"editor.formatOnSave": true,
"editor.formatOnSaveMode": "file",
"editor.formatOnType": true,
"prettier.useTabs": true,
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"code-runner.runInTerminal": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"terminal.integrated.defaultProfile.windows": "Git Bash",
"liveServer.settings.donotVerifyTags": true,
"editor.minimap.enabled": false,
"editor.tokenColorCustomizations": {
"[Monokai Pro (Filter Spectrum)]": {
"strings": "#00FF7F",
"numbers": "#FF8C00"
}
},
"git.enableCommitSigning": true,
"workbench.colorTheme": "Monokai Pro (Filter Spectrum)",
"editor.quickSuggestionsDelay": 5,
"css.lint.boxModel": "warning",
"css.lint.duplicateProperties": "warning",
"editor.suggestSelection": "first",
"editor.suggest.preview": true,
"editor.suggest.localityBonus": true,
"editor.wordBasedSuggestionsMode": "allDocuments"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment