25 lines
388 B
Elixir
25 lines
388 B
Elixir
|
IEx.configure(
|
|||
|
colors: [
|
|||
|
enabled: true,
|
|||
|
eval_result: [:cyan, :bright],
|
|||
|
eval_error: [:light_magenta]
|
|||
|
],
|
|||
|
default_prompt:
|
|||
|
[
|
|||
|
"%prefix",
|
|||
|
:white,
|
|||
|
"(",
|
|||
|
:blue,
|
|||
|
"%counter",
|
|||
|
:white,
|
|||
|
")",
|
|||
|
# plain string
|
|||
|
"›",
|
|||
|
:reset
|
|||
|
]
|
|||
|
|> IO.ANSI.format()
|
|||
|
|> IO.chardata_to_string()
|
|||
|
)
|
|||
|
|
|||
|
alias UkraineTaxidEx.{Itin, Edrpou}
|