Skip to content

Instantly share code, notes, and snippets.

@eriveltondasilva
Last active September 10, 2024 11:38
Show Gist options
  • Save eriveltondasilva/6ceea781471c33d000de73dd3d502c2b to your computer and use it in GitHub Desktop.
Save eriveltondasilva/6ceea781471c33d000de73dd3d502c2b to your computer and use it in GitHub Desktop.
{
// # JS PROFILE
// -> editor
"editor.bracketPairColorization.enabled": true,
"editor.bracketPairColorization.independentColorPoolPerBracketType": true,
"editor.cursorBlinking": "phase",
"editor.cursorSmoothCaretAnimation": "on",
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.foldingImportsByDefault": true,
"editor.fontFamily": "'JetBrains Mono', 'Fira Code', Consolas, 'Courier New', monospace",
"editor.fontLigatures": true,
"editor.fontSize": 16,
"editor.formatOnSave": true,
"editor.guides.bracketPairs": true,
"editor.linkedEditing": true,
"editor.minimap.enabled": false,
"editor.renderLineHighlight": "gutter",
"editor.smoothScrolling": true,
//
"[prisma]": {
"editor.defaultFormatter": "Prisma.prisma"
},
"editor.codeActionsOnSave": {
"source.organizeImports": "always"
},
"editor.rulers": [
{
"color": "#47ff4730",
"column": 80
},
{
"color": "#edff4730",
"column": 100
},
{
"color": "#ff634730",
"column": 120
}
],
"editor.tokenColorCustomizations": {
"textMateRules": [
{
"scope": [
"comment",
"constant", // boolean, number, string...
"keyword", // if, while...
"storage.type" // let, const...
],
"settings": {
"fontStyle": "italic"
}
},
{
"scope": [
"keyword.operator", // ++, --, ==, !=, &&, ||
"entity.name.function" // function name
],
"settings": {
"fontStyle": "bold"
}
}
]
},
// -> emmet
"emmet.triggerExpansionOnTab": true,
//
"emmet.includeLanguages": {
"javascript": "javascriptreact",
"typescript": "typescriptreact"
},
"emmet.syntaxProfiles": {
"javascript": "jsx",
"typescript": "tsx"
},
// -> explorer
"explorer.autoReveal": false,
"explorer.compactFolders": false,
"explorer.confirmDelete": false,
"explorer.confirmDragAndDrop": false,
"explorer.fileNesting.enabled": true,
"explorer.sortOrder": "type",
//
"explorer.fileNesting.patterns": {
"package.json": "package*, postcss*, vite*, next*, nest*, eslint*, tailwind*, jsconfig*, tsconfig*, .git*, .eslintrc*, .prettierrc*, .nvmrc*",
"composer.json": "composer*, artisan, .git*, .editorconfig, php*, laradumps*",
".env": ".env*"
},
// -> files
"files.autoSave": "afterDelay",
"files.trimTrailingWhitespace": true,
//
"files.exclude": {
"**/.next": true,
"**/.vscode": true,
"**/node_modules": true,
"**/vendor": true
},
// -> git
"git.autofetch": true,
"git.confirmSync": false,
"git.enableSmartCommit": true,
// -> javascript/typescript
"javascript.suggest.autoImports": true,
"javascript.updateImportsOnFileMove.enabled": "always",
"typescript.suggest.autoImports": true,
"typescript.updateImportsOnFileMove.enabled": "always",
// -> workbench
"workbench.colorTheme": "Bearded Theme Vivid Black",
"workbench.editor.enablePreview": true,
"workbench.externalBrowser": "edge",
"workbench.iconTheme": "bearded-icons",
"workbench.layoutControl.enabled": false,
"workbench.productIconTheme": "fluent-icons",
"workbench.sideBar.location": "right",
"workbench.startupEditor": "none",
"workbench.tree.indent": 12,
// -> terminal
"terminal.integrated.fontSize": 14,
"terminal.integrated.fontFamily": "'JetBrainsMono Nerd Font', Consolas, 'Courier New', monospace",
// # EXTENSIONS
// -> cspell
"cSpell.language": "en,pt,pt_BR,lorem",
"cSpell.userWords": [
"autofetch",
"biomejs",
"birthdate",
"codeium",
"Containerização",
"dayjs",
"DEBUGBAR",
"Doesnt",
"erivelton",
"Erivelton",
"esbenp",
"fastify",
"flowbite",
"headlessui",
"hoverable",
"inertiajs",
"laradumps",
"laravel",
"Monokai",
"nestjs",
"Parens",
"superadmin",
"tailwindcss",
"Youtube"
],
// -> git lens
"gitlens.codeLens.authors.enabled": false,
"gitlens.codeLens.enabled": false,
"gitlens.currentLine.enabled": false,
"gitlens.showWelcomeOnInstall": false,
// -> better comments
"better-comments.tags": [
{
"tag": "!",
"color": "#FF2D00",
"strikethrough": false,
"underline": false,
"backgroundColor": "transparent",
"bold": false,
"italic": false
},
{
"tag": "?",
"color": "#3498DB",
"strikethrough": false,
"underline": false,
"backgroundColor": "transparent",
"bold": false,
"italic": false
},
{
"tag": "#",
"color": "#3498DB",
"strikethrough": false,
"underline": false,
"backgroundColor": "transparent",
"bold": true,
"italic": false
},
{
"tag": "//",
"color": "#474747",
"strikethrough": true,
"underline": false,
"backgroundColor": "transparent",
"bold": false,
"italic": false
},
{
"tag": "todo",
"color": "#FF8C00",
"strikethrough": false,
"underline": false,
"backgroundColor": "transparent",
"bold": false,
"italic": false
},
{
"tag": "*",
"color": "#98C379",
"strikethrough": false,
"underline": false,
"backgroundColor": "transparent",
"bold": false,
"italic": false
}
],
// other
"codeium.enableCodeLens": false,
"vscode-edge-devtools.webhintInstallNotification": true,
"rest-client.environmentVariables": {
"$shared": {
"port": "8000",
"host": "http://localhost"
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment