-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.iex.exs
40 lines (38 loc) · 948 Bytes
/
.iex.exs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
IO.puts """
`
;:
`+;
++',
.+++,
:'++'.
.+'++'; Welcome to elixir-land
,+'+''':
`:+'+';';; http://elixir-lang.org
,:++';;;;'. http://www.phoenixframework.org/
::'+';;;;'' https://hex.pm/
:;;++;;';'' http://www.elixirschool.com/
.;;'''';;;: https://github.com/christopheradams/elixir_style_guide
,:::'';,,.
,,,,,:::,
,,,,,,,
``.`
"""
IEx.configure(
alive_prompt: "%prefix(%node):%counter>",
default_prompt: "%prefix:%counter>",
inspect: [pretty: true, char_lists: :as_lists, limit: :infinity],
history_size: -1,
colors: [
ls_directory: :cyan,
ls_device: :yellow,
doc_code: :green,
doc_inline_code: :magenta,
doc_headings: [:cyan, :underline],
doc_title: [:cyan, :bright, :underline],
eval_result: [ :cyan, :bright ]
]
)
import_file_if_available(".secret.exs")
rs = fn ->
Process.exit(self(), :normal)
end