Skip to content

Instantly share code, notes, and snippets.

View Azanniel's full-sized avatar
👨‍💻
Let's Code

Leandro Azanniel Azanniel

👨‍💻
Let's Code
  • Manaus, AM, Brazil
View GitHub Profile
# This is Git's per-user configuration file.
[user]
# Please adapt and uncomment the following lines:
name = azanniel
email = leo.azannielttt@gmail.com
[core]
editor = code --wait
[alias]
ci = "!f() { git commit -m \"$*\"; }; f"
co = checkout
@Azanniel
Azanniel / $PROFILE (POWERSHELL)
Last active July 1, 2024 17:55
Profile Powershell
# Aumenta a capacidade do armazenamento de histórico de comandos
$MaximumHistoryCount = 20000
# Inicia o startship para dar o visual ao prompt
Invoke-Expression (&starship init powershell)
# Inicializa os módulos
Import-Module PSReadLine
Import-Module posh-git
Import-Module -Name Terminal-Icons
@Azanniel
Azanniel / settings.json (Windows Terminal)
Last active July 1, 2024 17:58
Windows Terminal Settings
{
"$help": "https://aka.ms/terminal-documentation",
"$schema": "https://aka.ms/terminal-profiles-schema",
"actions":
[
{
"command":
{
"action": "copy",
"singleLine": false
@Azanniel
Azanniel / settings.json (VSCode)
Last active July 1, 2024 17:57
VSCode Settings (Windows)
{
// Editor
"window.titleBarStyle": "custom",
"breadcrumbs.enabled": false,
"explorer.compactFolders": false,
"files.eol": "\n",
"explorer.fileNesting.enabled": true,
"explorer.fileNesting.patterns": {
"*.ts": "${capture}.js",