1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-11 04:56:06 +01:00
nixvim/tests/test-sources/plugins/by-name/bacon/default.nix
2024-09-09 11:50:38 +01:00

17 lines
243 B
Nix

{
empty = {
plugins.bacon.enable = true;
};
defaults = {
plugins.bacon = {
enable = true;
settings = {
quickfix = {
enabled = true;
event_trigger = true;
};
};
};
};
}