diff --git a/modules/plugins/languages/elixir.nix b/modules/plugins/languages/elixir.nix index f8f338b1..7b3a0256 100644 --- a/modules/plugins/languages/elixir.nix +++ b/modules/plugins/languages/elixir.nix @@ -38,14 +38,9 @@ formats = { mix = { package = pkgs.elixir; - nullConfig = '' - table.insert( - ls_sources, - null_ls.builtins.formatting.mix.with({ - command = "${cfg.format.package}/bin/mix", - }) - ) - ''; + config = { + command = "${cfg.format.package}/bin/mix"; + }; }; }; in { @@ -107,8 +102,12 @@ in { }) (mkIf cfg.format.enable { - vim.lsp.null-ls.enable = true; - vim.lsp.null-ls.sources.elixir-format = formats.${cfg.format.type}.nullConfig; + vim.formatter.conform-nvim = { + enable = true; + setupOpts.formatters_by_ft.elixir = [cfg.format.type]; + setupOpts.formatters.${cfg.format.type} = + formats.${cfg.format.type}.config; + }; }) (mkIf cfg.elixir-tools.enable {