home.social

#elixirls — Public Fediverse posts

Live and recent posts from across the Fediverse tagged #elixirls, aggregated by home.social.

fetched live
  1. Does someone know how to prevent #mason from reinstalling #elixirls all the time? I only want to use #lexical, thank you

    #elixir #neovim

  2. if you are using in a mixed and project (using ). If you encounter ElixirLS going into an infinite compile loop, you can set up the :gleam compiler in mix.exs to not be used when in :test Mix env:

    ```elixir
    compilers:
    if Mix.env() != :test do
    [:gleam]
    else
    []
    end ++ Mix.compilers()
    ```

    This stopped the compile loop for me (after a restart) and allowed ElixirLS to work.

  3. @sP0re90 VSCode, it's free and works quite well there. At least passably well for me.