15 lines
265 B
Nix
15 lines
265 B
Nix
{ ... }:
|
|
{
|
|
programs.nixvim = {
|
|
plugins = {
|
|
conform-nvim = {
|
|
enable = true;
|
|
settings.formatters_by_ft = {
|
|
nix = [ "nixfmt" ];
|
|
lua = [ "stylua" ];
|
|
python = [ "ruff_format" ];
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|