nix-community.nixvim/tests/test-sources/plugins/utils/autosource.nix
2024-09-05 18:52:22 +00:00

16 lines
234 B
Nix

{
empty = {
plugins.autosource.enable = true;
};
defaults = {
plugins.autosource = {
enable = true;
settings = {
prompt_for_new_file = 1;
prompt_for_changed_file = 1;
};
};
};
}