-
Notifications
You must be signed in to change notification settings - Fork 0
/
.iex.exs
46 lines (42 loc) · 1.12 KB
/
.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
41
42
43
44
45
46
# # configures IEx -- see https://alchemist.camp/episodes/iex-exs
alias Ibex.Tws
alias Ibex.Fetchers
alias Ibex.Supervisors
alias Tws.{Client, Contracts, Protocol}
# # defmodule AC do
# # # def update(schema, changes) do
# # # schema
# # # |> Ecto.Changeset.change(changes)
# # # |> Repo.update()
# # # end
# # IEx.configure(
# # colors: [
# # syntax_colors: [
# # number: :light_yellow,
# # atom: :light_cyan,
# # string: :light_black,
# # boolean: [:light_blue],
# # nil: [:magenta, :bright]
# # ],
# # ls_directory: :cyan,
# # ls_device: :yellow,
# # doc_code: :green,
# # doc_inline_code: :magenta,
# # doc_headings: [:cyan, :underline],
# # doc_title: [:cyan, :bright, :underline]
# # ],
# # default_prompt:
# # [
# # # ANSI CHA, move cursor to column 1
# # "\e[G",
# # :light_magenta,
# # # plain string
# # "🧪 iex",
# # ">",
# # :white,
# # :reset
# # ]
# # |> IO.ANSI.format()
# # |> IO.chardata_to_string()
# # )
# # end