1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-14 14:32:47 +01:00
nixvim/tests/test-sources/plugins/utils/indent-o-matic.nix
2024-02-27 13:47:25 +01:00

17 lines
264 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];
};
};
};
}