mirror of
https://github.com/nix-community/nixvim.git
synced 2025-08-09 12:25:03 +02:00
added warnings module
This commit is contained in:
parent
e607ab67a5
commit
5a222885fc
5 changed files with 65 additions and 8 deletions
12
modules/warnings.nix
Normal file
12
modules/warnings.nix
Normal file
|
@ -0,0 +1,12 @@
|
|||
{ lib, ... }:
|
||||
with lib;
|
||||
|
||||
{
|
||||
options = {
|
||||
warnings = mkOption {
|
||||
type = types.listOf types.str;
|
||||
visible = false;
|
||||
default = [];
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue