1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-08 19:46:06 +01:00
nixvim/tests/test-sources/plugins/utils/sleuth.nix
2024-09-08 14:02:03 +01:00

17 lines
248 B
Nix

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