mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-22 08:53:28 +02:00
22 lines
304 B
Nix
22 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
|
||
|
];
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|