nixos-config/home/afoucaultc/packages/neovim/plugins/conform-nvim.nix
2026-08-20 13:20:05 +02:00

19 lines
370 B
Nix

{ ... }:
{
programs.nixvim = {
plugins = {
conform-nvim = {
enable = true;
settings.formatters_by_ft = {
nix = [ "nixfmt" ];
lua = [ "stylua" ];
python = [ "ruff_format" ];
format_on_save = {
lsp_fallback = true;
timeout_ms = 500;
};
};
};
};
};
}