We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fd8847b commit b034737Copy full SHA for b034737
plugins/by-name/lazygit/default.nix
@@ -63,8 +63,14 @@ lib.nixvim.plugins.mkVimPlugin {
63
Config file path is evaluated if this value is `1`.
64
'';
65
66
- config_file_path = defaultNullOpts.mkNullable (with types; either str (listOf str)) [
67
- ] "Custom config file path or list of custom config file paths.";
+ config_file_path = defaultNullOpts.mkNullable (
+ with types;
68
+ oneOf [
69
+ str
70
+ (listOf str)
71
+ rawLua
72
+ ]
73
+ ) [ ] "Custom config file path or list of custom config file paths.";
74
};
75
76
settingsExample = {
0 commit comments