Created
April 28, 2020 00:13
-
-
Save bobbae/e47b77ec6a278fff4e9231f6cc460336 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # do code $PROFILE and edit | |
| Import-Module posh-git | |
| Import-Module oh-my-posh | |
| Set-Theme Paradox | |
| # Chocolatey profile | |
| $ChocolateyProfile = "$env:ChocolateyInstall\helpers\chocolateyProfile.psm1" | |
| if (Test-Path($ChocolateyProfile)) { | |
| Import-Module "$ChocolateyProfile" | |
| } | |
| function Do-ls { | |
| c:\users\bobba\bin\ls.exe -aCF $args | |
| } | |
| New-Alias l Do-ls |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment