nix-community.nixvim/tests/test-sources/plugins/utils/sleuth.nix

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

18 lines
258 B
Nix
Raw Normal View History

2024-03-24 11:31:50 +01:00
{
empty = {
plugins.sleuth.enable = true;
};
example = {
plugins.sleuth = {
enable = true;
settings = {
heuristics = true;
gitcommit_heuristics = false;
no_filetype_indent_on = true;
};
};
};
}