Created
February 21, 2020 22:09
-
-
Save bottlenecked/9cc01f43d110e4e0eeee591124d5f84d to your computer and use it in GitHub Desktop.
powershell profile for elixir development
This file contains 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
# choco install poshgit | |
Import-Module 'C:\tools\poshgit\dahlbyk-posh-git-9bda399\src\posh-git.psd1' | |
# chcp 65001 | |
$OutputEncoding = [console]::InputEncoding = [console]::OutputEncoding = New-Object System.Text.UTF8Encoding | |
# iex shell startup | |
remove-item alias:iex -force | |
# iex shell history | |
$env:ERL_AFLAGS = "-kernel shell_history enabled" | |
# used in .iex.exs | |
$env:shell = 'powershell' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment