Skip to content

Instantly share code, notes, and snippets.

View matsdahlin's full-sized avatar
📚
Always learning

Mats Dahlin matsdahlin

📚
Always learning
View GitHub Profile
Get-ChildItem -Path "." -Include "node_modules" -Recurse -Directory | Remove-Item -Recurse -Force
@matsdahlin
matsdahlin / Microsoft.PowerShell_profile.ps1
Last active August 21, 2023 18:55
PowerShell Profile with Starship prompt and posh-git for git auto complete
Import-Module posh-git
Invoke-Expression (&starship init powershell)
$ENV:STARSHIP_CONFIG = "$HOME\starship.toml"
Function OpenPresenting {code --user-data-dir C:\Users\Mats\Dropbox\Apps\VSCode\PresentingUser}
Set-Alias -Name "presenting" -Value OpenPresenting