From 700dbca260acd0c46da176ef01e1c3490e8fbf89 Mon Sep 17 00:00:00 2001 From: Claudio Ortolina Date: Mon, 22 Sep 2025 21:09:58 +0300 Subject: [PATCH] Set useful IEx options for data formatting --- .iex.exs | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.iex.exs b/.iex.exs index 128c00ae..fd03f77c 100644 --- a/.iex.exs +++ b/.iex.exs @@ -1 +1,8 @@ -IEx.configure(auto_reload: true) +IEx.configure( + auto_reload: true, + inspect: [ + limit: :infinity, + printable_limit: :infinity, + width: 120 + ] +)