1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-09 03:56:05 +01:00

modules/autocmd: remove helpers

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

View file

@ -1,13 +1,12 @@
{ {
lib, lib,
helpers,
config, config,
... ...
}: }:
{ {
options = { options = {
autoGroups = lib.mkOption { autoGroups = lib.mkOption {
type = lib.types.attrsOf helpers.autocmd.autoGroupOption; type = lib.types.attrsOf lib.nixvim.autocmd.autoGroupOption;
default = { }; default = { };
description = "augroup definitions"; description = "augroup definitions";
example = { example = {
@ -18,7 +17,7 @@
}; };
autoCmd = lib.mkOption { autoCmd = lib.mkOption {
type = lib.types.listOf helpers.autocmd.autoCmdOption; type = lib.types.listOf lib.nixvim.autocmd.autoCmdOption;
default = [ ]; default = [ ];
description = "autocmd definitions"; description = "autocmd definitions";
example = [ example = [