1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-08 19:46:06 +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,
helpers,
config,
...
}:
{
options = {
autoGroups = lib.mkOption {
type = lib.types.attrsOf helpers.autocmd.autoGroupOption;
type = lib.types.attrsOf lib.nixvim.autocmd.autoGroupOption;
default = { };
description = "augroup definitions";
example = {
@ -18,7 +17,7 @@
};
autoCmd = lib.mkOption {
type = lib.types.listOf helpers.autocmd.autoCmdOption;
type = lib.types.listOf lib.nixvim.autocmd.autoCmdOption;
default = [ ];
description = "autocmd definitions";
example = [