mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-23 01:08:43 +02:00
* moved helpers to lib folder * Created proxy file for helpers.nix * wrappers: removed code duplication * null-ls: fix wrong name of variable * added warnings module * Added assertions * bufferline: deprecated option * nvim-tree: renamed options * Fixed mkRenamedOption * Bufferline: added new options * Fixed deprecated option Co-authored-by: Pedro Alves <pta2002@pta2002.com>
17 lines
319 B
Nix
17 lines
319 B
Nix
{ lib, ... }:
|
|
with lib;
|
|
|
|
{
|
|
options = {
|
|
warnings = mkOption {
|
|
type = types.listOf types.str;
|
|
visible = false;
|
|
default = [];
|
|
};
|
|
assertions = mkOption {
|
|
type = types.listOf types.attrs; # Not sure what the correct type is here
|
|
visible = false;
|
|
default = [];
|
|
};
|
|
};
|
|
}
|