Skip to content

Instantly share code, notes, and snippets.

@devatorres
Last active February 6, 2024 08:36
Show Gist options
  • Save devatorres/bdb01184c3142c23c0ae1d8d9c89a6e1 to your computer and use it in GitHub Desktop.
Save devatorres/bdb01184c3142c23c0ae1d8d9c89a6e1 to your computer and use it in GitHub Desktop.
Visual Studio Code user settings
/* Extensions
- Better Comments
- Color Highlight
- Error Lens
- ESLint
- Fluent Icons
- Git History
- Github Theme
- GitLens — Git supercharged
- Import Cost
- Material Icon Theme
- Prettier - Code formatter
- Symbols
- Tailwind CSS IntelliSense
- Version Lens
*/
{
"better-comments.tags": [
{
"tag": "",
"color": "#00bc73",
"strikethrough": false,
"backgroundColor": "transparent"
},
{
"tag": "?",
"color": "#a6accd",
"strikethrough": false,
"backgroundColor": "transparent"
},
{
"tag": "!",
"color": "#ec4899",
"strikethrough": false,
"backgroundColor": "transparent"
},
{
"tag": "todo",
"color": "#ff8c00",
"strikethrough": false,
"backgroundColor": "transparent"
}
],
"css.lint.unknownAtRules": "ignore",
"debug.console.fontSize": 12,
"editor.accessibilitySupport": "off",
"editor.bracketPairColorization.independentColorPoolPerBracketType": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.fontFamily": "'Cascadia Code', Monospace",
"editor.fontLigatures": true,
"editor.formatOnSave": true,
"editor.guides.bracketPairs": true,
"editor.lineNumbers": "on",
"editor.minimap.enabled": false,
"editor.tabSize": 2,
"explorer.confirmDragAndDrop": false,
"files.simpleDialog.enable": true,
"javascript.preferences.quoteStyle": "single",
"javascript.updateImportsOnFileMove.enabled": "never",
"prettier.bracketSameLine": true,
"prettier.semi": false,
"prettier.singleQuote": true,
"prettier.trailingComma": "none",
"prettier.useTabs": true,
"terminal.integrated.defaultProfile.windows": "Git Bash",
"typescript.preferences.quoteStyle": "single",
"window.titleBarStyle": "custom",
"workbench.colorTheme": "GitHub Dark Default",
"workbench.editor.showIcons": true,
"workbench.iconTheme": "material-icon-theme",
"workbench.list.smoothScrolling": true,
"workbench.startupEditor": "none",
"editor.cursorBlinking": "smooth",
"terminal.integrated.cursorBlinking": true,
"editor.linkedEditing": true,
"breadcrumbs.enabled": false,
"editor.cursorSmoothCaretAnimation": "on",
"oneDarkPro.italic": false,
"errorLens.excludeBySource": ["ts(2322)", "ts(2339)"],
"symbols.hidesExplorerArrows": false,
"workbench.productIconTheme": "fluent-icons",
"workbench.colorCustomizations": {
"[GitHub Dark Default]": {
"sideBar.background": "#090c10",
"activityBar.background": "#010409",
"statusBar.background": "#010409",
"titleBar.activeBackground": "#010409"
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment