nix-community.nixvim/tests/test-sources/plugins/utils/sleuth.nix
2024-03-25 23:12:04 +01:00

17 lines
258 B
Nix

{
empty = {
plugins.sleuth.enable = true;
};
example = {
plugins.sleuth = {
enable = true;
settings = {
heuristics = true;
gitcommit_heuristics = false;
no_filetype_indent_on = true;
};
};
};
}