Skip to content

Commit

Permalink
feat: define package explicitly and set formatter
Browse files Browse the repository at this point in the history
  • Loading branch information
iguntur committed Feb 24, 2025
1 parent 1fe6382 commit 47d9e1b
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions config/sdk/elixir.nix
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,13 @@
plugins = {
lsp.servers.elixirls = {
enable = true;
package = pkgs.beam27Packages.elixir-ls;
};

conform-nvim.settings.formatters_by_ft = {
elixir = [ "rustywind" ];
eelixir = [ "rustywind" ];
heex = [ "rustywind" ];
elixir = [ "rustywind" "mix" ];
eelixir = [ "rustywind" "mix" ];
heex = [ "rustywind" "mix" ];
};
};

Expand Down

0 comments on commit 47d9e1b

Please sign in to comment.