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

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

17 lines
234 B
Nix
Raw Normal View History

2024-09-05 21:38:54 +03:00
{
empty = {
plugins.autosource.enable = true;
};
defaults = {
plugins.autosource = {
enable = true;
settings = {
prompt_for_new_file = 1;
prompt_for_changed_file = 1;
};
};
};
}