Skip to content

Instantly share code, notes, and snippets.

@blackode
Created April 6, 2020 18:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save blackode/56943d9dc22958e3fc97f0b85b35878d to your computer and use it in GitHub Desktop.
Save blackode/56943d9dc22958e3fc97f0b85b35878d to your computer and use it in GitHub Desktop.
Main iex configuration file
# Creator: blackode
# email: mrblackode@gmail.com
# Load another ".iex.exs" file
# import_file("~/.custom_iex.exs")
# Import ecto quries for testing quries in iex
import_if_available(Ecto.Query)
# IEx.configure colors: [enabled: true]
# IEx.configure colors: [ eval_result: [ :cyan, :bright ] ]
# Color Variables
# blue_ansi = IO.ANSI.blue()
green_ansi = IO.ANSI.green()
reset_ansi = IO.ANSI.reset()
white_background = IO.ANSI.white_background()
# Greeting text before the shell starts
elixir_icon = ""
# custom iex files dir
# improrting files
import_file("~/.iex/prompt_iex.exs")
import_file("~/.iex/colors_iex.exs")
import_file("~/.iex/inspect_iex.exs")
import_file("~/.iex/aliases_iex.exs")
# Greeting text before the shell starts
greeting_text = green_ansi <> " ❄ Good Luck with Elixir ❄" <> reset_ansi
IO.puts(greeting_text)
Application.put_env(:elixir, :ansi_enabled, true)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment