mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-22 17:03:31 +02:00
18 lines
243 B
Nix
18 lines
243 B
Nix
|
{
|
||
|
empty = {
|
||
|
plugins.bacon.enable = true;
|
||
|
};
|
||
|
|
||
|
defaults = {
|
||
|
plugins.bacon = {
|
||
|
enable = true;
|
||
|
settings = {
|
||
|
quickfix = {
|
||
|
enabled = true;
|
||
|
event_trigger = true;
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|