Skip to content

Instantly share code, notes, and snippets.

View jeangatto's full-sized avatar
🏠
Working from home

Jean Francisco Flores Gatto jeangatto

🏠
Working from home
View GitHub Profile
@jeangatto
jeangatto / profile.ps1
Created May 6, 2026 19:30
PowerShell Profile
[System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor [System.Net.SecurityProtocolType]::Tls12
$OutputEncoding = [console]::InputEncoding = [console]::OutputEncoding = New-Object System.Text.UTF8Encoding
# https://github.com/devblackops/Terminal-Icons
Import-Module Terminal-Icons
# https://github.com/dahlbyk/posh-git
Import-Module posh-git
@jeangatto
jeangatto / .gitconfig
Last active May 8, 2026 16:47
Git Config (The Ultimate Guide, Best Configs)
# REF: https://geekworkbench.com/blog/technical/git-config-global-settings/
# REF: https://www.git-tower.com/blog/the-ultimate-guide-to-git-config
[user]
name = #your-name
email = #your-email
[core]
# Windows: convert LF to CRLF on checkout, CRLF to LF on commit
autocrlf = true
@jeangatto
jeangatto / Microsoft.PowerShell_profile.ps1
Created April 29, 2026 14:00
Microsoft PowerShell Profile
$OutputEncoding = [console]::InputEncoding = [console]::OutputEncoding = New-Object System.Text.UTF8Encoding
Import-Module Terminal-Icons
Import-Module PSReadLine
Import-Module CompletionPredictor
Set-PSReadLineOption -PredictionSource HistoryAndPlugin
Set-PSReadLineOption -PredictionViewStyle Inline
Set-PSReadLineOption -ShowToolTips
Set-PSReadLineOption -HistoryNoDuplicates
@jeangatto
jeangatto / terminal.setting.json
Last active May 6, 2026 16:50
Windows Terminal Settings (JSON) with Dracula Theme + Meslo (Nerd Fonts)
{
// Nerds Fonts: https://github.com/ryanoasis/nerd-fonts
"$help": "https://aka.ms/terminal-documentation",
"$schema": "https://aka.ms/terminal-profiles-schema",
"actions": [],
"centerOnLaunch": true,
"copyFormatting": "none",
"copyOnSelect": true,
"defaultProfile": "{dc0781d5-4b33-4c76-8989-14dc15bb60b4}",
@jeangatto
jeangatto / vscode.settings.json
Last active May 4, 2026 12:54
VS Code Settings (for C# and Copilot AI)
{
// Language-specific formatter settings: choose the default formatter for each file type.
// This makes sure HTML, CSS, JS, JSON, and TypeScript files are formatted consistently.
"[html]": {
"editor.defaultFormatter": "vscode.html-language-features",
},
"[css]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
},
"[javascript]": {