mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-23 01:08:43 +02:00
15 lines
193 B
Nix
15 lines
193 B
Nix
|
{
|
||
|
empty = {
|
||
|
plugins.mini-bufremove.enable = true;
|
||
|
};
|
||
|
|
||
|
example = {
|
||
|
plugins.mini-bufremove = {
|
||
|
enable = true;
|
||
|
settings = {
|
||
|
silent = true;
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|