Skip to content

Instantly share code, notes, and snippets.

View davilson's full-sized avatar
:octocat:
Working from home

Davilson de Castro davilson

:octocat:
Working from home
View GitHub Profile
@davilson
davilson / linux-setup.sh
Last active March 11, 2026 16:58
Setup linux development environment
#!/bin/bash
# =============================================================================
# Script de pós-instalação para Ubuntu/Debian
# Deve ser executado como usuário normal (com sudo para ações privilegiadas)
#
# Uso:
# bash ./linux-setup.sh
#
# O que será instalado:
@davilson
davilson / .gitconfig
Last active October 10, 2025 15:41
Configuração global GIT
[user]
name = John Doe
email = john@email.com
[push]
followTags = true
[core]
editor = code --wait # trae --wait, cursor --wait or code --wait
[alias]
a = !git add --all
c = !git commit -m
@davilson
davilson / vscode-settings.json
Last active September 26, 2021 00:50
Configuração do vscode
{
"editor.inlayHints.enabled": true,
"typescript.inlayHints.parameterTypes.enabled": true,
"typescript.inlayHints.parameterNames.enabled": "all",
"workbench.colorTheme": "GitHub Dark",
"workbench.startupEditor": "none",
"workbench.iconTheme": "vscode-icons",
"workbench.productIconTheme": "fluent-icons",
"editor.fontFamily": "Fira Code",
"editor.fontLigatures": true,