nix-community.nixvim/tests/test-sources/plugins/utils/indent-o-matic.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
304 B
Nix
Raw Normal View History

2024-02-27 12:47:25 +00:00
{
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
];
};
};
};
}