mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-27 11:08:53 +02:00
plugins/utils: normalize plugin defaults
This commit is contained in:
parent
b10a391bd0
commit
6ab2a39e6a
53 changed files with 1434 additions and 1221 deletions
|
@ -70,13 +70,10 @@ in
|
|||
Function called when a new window is closed.
|
||||
'';
|
||||
|
||||
render = helpers.defaultNullOpts.mkNullable (
|
||||
with types;
|
||||
either (enum [
|
||||
"default"
|
||||
"minimal"
|
||||
]) helpers.nixvimTypes.rawLua
|
||||
) "default" "Function to render a notification buffer or a built-in renderer name.";
|
||||
render = helpers.defaultNullOpts.mkEnumFirstDefault [
|
||||
"default"
|
||||
"minimal"
|
||||
] "Function to render a notification buffer or a built-in renderer name.";
|
||||
|
||||
minimumWidth = helpers.defaultNullOpts.mkUnsignedInt 50 ''
|
||||
Minimum width for notification windows.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue