nixos-config/home/afoucaultc/packages/neovim/plugins/conform-nvim.nix
2026-08-23 09:42:08 +02:00

21 lines
403 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;
};
};
};
};
};
}