1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-09 12:06:05 +01:00
nixvim/tests/test-sources/plugins/languages/zig.nix
2024-03-03 22:40:54 +01:00

15 lines
179 B
Nix

{
empty = {
plugins.zig.enable = true;
};
example = {
plugins.zig = {
enable = true;
settings = {
fmt_autosave = false;
};
};
};
}