1
0
Fork 0
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:
saygo-png 2025-11-03 03:46:27 +01:00 committed by Matt Sturgeon
parent b0fd7f1d6a
commit e12be2b231

View file

@ -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 = {