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:
parent
aa05adc113
commit
cf32b498bc
1 changed files with 2 additions and 3 deletions
|
|
@ -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 = [
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue