debian-dots

dotfiles (does the obvious)
git clone [email protected]:dracuxan/debian-dots.git
Log | Files | Refs | README | LICENSE

.iex.exs (280B)


      1 IEx.configure(
      2   # Main prompt
      3   default_prompt: "λ > ",
      4 
      5   # Prompt when connected to a distributed node
      6   alive_prompt: "λ (#{IO.ANSI.cyan()}%node#{IO.ANSI.reset()}) >"
      7 )
      8 
      9 # Optional helper functions
     10 defmodule Helpers do
     11   def neo, do: IEx.Helpers.clear()
     12 end
     13 
     14 import Helpers