mirror of
https://github.com/nix-community/nixvim.git
synced 2025-08-08 03:45:22 +02:00
13 lines
161 B
Nix
13 lines
161 B
Nix
|
{ lib, ... }:
|
||
|
with lib;
|
||
|
|
||
|
{
|
||
|
options = {
|
||
|
warnings = mkOption {
|
||
|
type = types.listOf types.str;
|
||
|
visible = false;
|
||
|
default = [];
|
||
|
};
|
||
|
};
|
||
|
}
|