1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-08 19:46:06 +01:00

plugins/zig: remove helpers

Signed-off-by: saygo-png <saygo.mail@proton.me>
This commit is contained in:
saygo-png 2025-10-18 03:35:54 +02:00 committed by Matt Sturgeon
parent cf32b498bc
commit be72c48997

View file

@ -1,6 +1,5 @@
{ {
lib, lib,
helpers,
... ...
}: }:
with lib; with lib;
@ -23,7 +22,7 @@ mkVimPlugin {
]; ];
settingsOptions = { settingsOptions = {
fmt_autosave = helpers.defaultNullOpts.mkFlagInt 1 '' fmt_autosave = lib.nixvim.defaultNullOpts.mkFlagInt 1 ''
This plugin enables automatic code formatting on save by default using zig fmt. This plugin enables automatic code formatting on save by default using zig fmt.
To disable it, you can set this option to `0`. To disable it, you can set this option to `0`.
''; '';