This repository has been archived on 2024-03-28. You can view files and clone it, but cannot push or open issues or pull requests.
dotfiles/apps/elixir/iex.exs

18 lines
387 B
Elixir
Raw Normal View History

2020-01-20 11:40:26 -06:00
Application.put_env(:elixir, :ansi_enabled, true)
2020-03-23 13:23:50 -05:00
# PROTIP: to break, `#iex:break`
2020-01-20 11:40:26 -06:00
IEx.configure(
colors: [enabled: true],
default_prompt: [
"\e[G", # ANSI CHA, move cursor to column 1
:magenta,
"%prefix", # IEx prompt variable
2020-03-23 13:23:50 -05:00
"#",
"%counter", # IEx prompt variable
2020-01-20 11:40:26 -06:00
">", # plain string
:reset
] |> IO.ANSI.format |> IO.chardata_to_string
)