├── .gitignore ├── HandleToolsV1.psm1 ├── Microsoft.PowerShell_profile.ps1 ├── README.md ├── aws.ps1 ├── defaults.ps1 ├── development.ps1 ├── icons ├── powershell-mac.svg ├── powershell-preview.ico ├── powershell.ico └── powershell.svg ├── misc └── windows-terminal.png ├── node.ps1 ├── openssl.ps1 ├── profiles.json ├── terminus-settings.yaml ├── unix.ps1 └── whois.ps1 /.gitignore: -------------------------------------------------------------------------------- 1 | Pscx/ 2 | Modules/ 3 | -------------------------------------------------------------------------------- /HandleToolsV1.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemaccana/powershell-profile/HEAD/HandleToolsV1.psm1 -------------------------------------------------------------------------------- /Microsoft.PowerShell_profile.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemaccana/powershell-profile/HEAD/Microsoft.PowerShell_profile.ps1 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemaccana/powershell-profile/HEAD/README.md -------------------------------------------------------------------------------- /aws.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemaccana/powershell-profile/HEAD/aws.ps1 -------------------------------------------------------------------------------- /defaults.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemaccana/powershell-profile/HEAD/defaults.ps1 -------------------------------------------------------------------------------- /development.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemaccana/powershell-profile/HEAD/development.ps1 -------------------------------------------------------------------------------- /icons/powershell-mac.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemaccana/powershell-profile/HEAD/icons/powershell-mac.svg -------------------------------------------------------------------------------- /icons/powershell-preview.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemaccana/powershell-profile/HEAD/icons/powershell-preview.ico -------------------------------------------------------------------------------- /icons/powershell.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemaccana/powershell-profile/HEAD/icons/powershell.ico -------------------------------------------------------------------------------- /icons/powershell.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemaccana/powershell-profile/HEAD/icons/powershell.svg -------------------------------------------------------------------------------- /misc/windows-terminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemaccana/powershell-profile/HEAD/misc/windows-terminal.png -------------------------------------------------------------------------------- /node.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemaccana/powershell-profile/HEAD/node.ps1 -------------------------------------------------------------------------------- /openssl.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemaccana/powershell-profile/HEAD/openssl.ps1 -------------------------------------------------------------------------------- /profiles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemaccana/powershell-profile/HEAD/profiles.json -------------------------------------------------------------------------------- /terminus-settings.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemaccana/powershell-profile/HEAD/terminus-settings.yaml -------------------------------------------------------------------------------- /unix.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemaccana/powershell-profile/HEAD/unix.ps1 -------------------------------------------------------------------------------- /whois.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemaccana/powershell-profile/HEAD/whois.ps1 --------------------------------------------------------------------------------