nix-community.nixvim/tests/test-sources/plugins/by-name/vim-suda/default.nix
2025-01-19 15:19:43 +01:00

29 lines
468 B
Nix

{
empty = {
plugins.vim-suda.enable = true;
};
defaults = {
plugins.vim-suda = {
enable = true;
settings = {
path = "sudo";
noninteractive = 0;
prompt = "Password: ";
smart_edit = 0;
};
};
};
example = {
plugins.vim-suda = {
enable = true;
settings = {
path = "doas";
noninteractive = 1;
prompt = "Pass: ";
smart_edit = 1;
};
};
};
}