1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-13 14:02:46 +01:00
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;
};
};
};
}