mirror of
https://github.com/NotAShelf/nvf.git
synced 2025-09-06 02:11:33 +00:00
wrapper/lazy: add beforeSetup option
Useful for avoiding a million require calls in setupOpts.
This commit is contained in:
parent
99a4eafa34
commit
ed69816f68
2 changed files with 10 additions and 0 deletions
|
@ -74,6 +74,15 @@
|
|||
'';
|
||||
};
|
||||
|
||||
beforeSetup = mkOption {
|
||||
type = nullOr lines;
|
||||
default = null;
|
||||
description = ''
|
||||
Lua code to run after the plugin is loaded, but before the setup
|
||||
function is called.
|
||||
'';
|
||||
};
|
||||
|
||||
setupModule = mkOption {
|
||||
type = nullOr str;
|
||||
default = null;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue