Skip to content

Instantly share code, notes, and snippets.

@bottlenecked
Created February 21, 2020 22:09
Show Gist options
  • Save bottlenecked/9cc01f43d110e4e0eeee591124d5f84d to your computer and use it in GitHub Desktop.
Save bottlenecked/9cc01f43d110e4e0eeee591124d5f84d to your computer and use it in GitHub Desktop.
powershell profile for elixir development
# 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