plugins/vim-suda: init

This commit is contained in:
Marcel 2024-11-28 13:11:27 +01:00
parent fc9178d124
commit 05331006a4
No known key found for this signature in database
GPG key ID: 446F3B093DF81C6A
2 changed files with 70 additions and 0 deletions

View file

@ -0,0 +1,29 @@
{
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;
};
};
};
}