Skip to content

Instantly share code, notes, and snippets.

View eriveltondasilva's full-sized avatar
🎯
Focusing

Erivelton Silva eriveltondasilva

🎯
Focusing
View GitHub Profile
{
// # VSCODE CONFIG - PROFILE JS
// # editor
"editor.bracketPairColorization.enabled": true,
"editor.bracketPairColorization.independentColorPoolPerBracketType": true,
"editor.cursorBlinking": "phase",
"editor.cursorSmoothCaretAnimation": "on",
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.fontFamily": "'JetBrains Mono', Consolas, 'Courier New', monospace",
"editor.fontLigatures": true,
@eriveltondasilva
eriveltondasilva / vscode-tasks.json
Last active July 6, 2024 22:51
Este arquivo define uma configuração de tarefas para o Visual Studio Code, facilitando o desenvolvimento de aplicações que utilizam Vite e Laravel. A configuração inclui três tarefas principais: 'Run Vite', 'Run Laravel' e '🚀 Servers'.
{
"version": "2.0.0",
"tasks": [
{
"label": "Run Vite",
"type": "shell",
"command": "npm run dev",
"isBackground": true,
"presentation": {
"panel": "new",
@eriveltondasilva
eriveltondasilva / .prettierrc
Last active July 6, 2024 22:51
Este arquivo define a configuração do Prettier para formatar o código no projeto.
{
"arrowParens": "always",
"bracketSameLine": true,
"bracketSpacing": true,
"endOfLine": "lf",
"jsxSingleQuote": true,
"printWidth": 120,
"semi": false,
"singleQuote": true,
"tabWidth": 2,
@eriveltondasilva
eriveltondasilva / dev-environment-setup.sh
Last active July 6, 2024 22:56
Este script configura um ambiente de desenvolvimento completo em uma máquina Ubuntu.
#!/bin/bash
# Limpa a tela antes de iniciar o script
clear
# => Atualização do sistema
echo -e "\n########################################"
echo -e "=> Atualizando inicialmente o sistema...\n"
sudo apt-get update;