mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 08:35:43 +02:00
18 lines
258 B
Nix
18 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;
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|