mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-29 12:00:04 +02:00
plugins/indent-o-matic: init (#1144)
This commit is contained in:
parent
7eb74fecd1
commit
63558cff59
3 changed files with 43 additions and 0 deletions
17
tests/test-sources/plugins/utils/indent-o-matic.nix
Normal file
17
tests/test-sources/plugins/utils/indent-o-matic.nix
Normal file
|
@ -0,0 +1,17 @@
|
|||
{
|
||||
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];
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue