1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-09 12:06:05 +01:00
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;
};
};
};
}