Livebook Notebooks
Summary
This is a series of personal Livebook Notebooks to cover a few areas of need. They are also immensely helpful in learning more complex Elixir concepts. Livebook is far more user friendly than iex
though that becomes far more useful when you do something like export ERL_AFLAGS "-kernel shell_history enabled -kernel shell_history_file_bytes 1024000"
.
This is my list of Elixir shell variables in case you’re curious. I happen to be using the fish shell so this is located in ~/.config/fish/config.fish
:
# Set Elixir variables
set -g -x KERL_BUILD_DOCS yes
set -g -x KERL_DOC_TARGETS "man html pdf chunks"
set -g -x ERL_AFLAGS "-kernel shell_history enabled -kernel shell_history_file_bytes 1024000"