1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-08 19:46:06 +01:00

plugins/lazygit: fix type in setting declaration

Signed-off-by: saygo-png <saygo.mail@proton.me>
This commit is contained in:
saygo-png 2025-11-03 22:48:03 +01:00 committed by Matt Sturgeon
parent e12be2b231
commit de1760ddfd

View file

@ -63,8 +63,14 @@ lib.nixvim.plugins.mkVimPlugin {
Config file path is evaluated if this value is `1`.
'';
config_file_path = defaultNullOpts.mkNullable (with types; either str (listOf str)) [
] "Custom config file path or list of custom config file paths.";
config_file_path = defaultNullOpts.mkNullable (
with types;
oneOf [
str
(listOf str)
rawLua
]
) [ ] "Custom config file path or list of custom config file paths.";
};
settingsExample = {