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:
parent
e12be2b231
commit
de1760ddfd
1 changed files with 8 additions and 2 deletions
|
|
@ -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 = {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue