17 lines
334 B
Nix
17 lines
334 B
Nix
{...}: {
|
|
vim.formatter.conform-nvim = {
|
|
enable = true;
|
|
setupOpts = {
|
|
formatters_by_ft = {
|
|
lua = ["stylua"];
|
|
rust = ["rustfmt"];
|
|
nix = ["alejandra"];
|
|
python = ["black"];
|
|
};
|
|
format_on_save = {
|
|
timeout_ms = 2000;
|
|
lsp_format = "fallback";
|
|
};
|
|
};
|
|
};
|
|
}
|