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