mirror of
https://github.com/nix-community/nixvim.git
synced 2025-11-08 19:46:06 +01:00
plugins/dressing: fix type in setting declaration
Signed-off-by: saygo-png <saygo.mail@proton.me>
This commit is contained in:
parent
b0fd7f1d6a
commit
e12be2b231
1 changed files with 7 additions and 1 deletions
|
|
@ -12,7 +12,13 @@ lib.nixvim.plugins.mkNeovimPlugin {
|
||||||
|
|
||||||
settingsOptions =
|
settingsOptions =
|
||||||
let
|
let
|
||||||
intOrRatio = with types; either ints.unsigned (numbers.between 0.0 1.0);
|
intOrRatio =
|
||||||
|
with types;
|
||||||
|
oneOf [
|
||||||
|
ints.unsigned
|
||||||
|
(numbers.between 0.0 1.0)
|
||||||
|
rawLua
|
||||||
|
];
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
input = {
|
input = {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue