nix-community.nixvim/tests/test-sources/plugins/by-name/indent-o-matic/default.nix
2024-09-09 11:50:38 +01:00

21 lines
304 B
Nix

{
empty = {
plugins.indent-o-matic.enable = true;
};
example = {
plugins.indent-o-matic = {
enable = true;
settings = {
max_lines = 2048;
skip_multiline = false;
standard_widths = [
2
4
8
];
};
};
};
}