mirror of
https://github.com/nix-community/nixvim.git
synced 2025-07-24 04:35:08 +02:00
modules/output: fix extraLuaPackages
This commit is contained in:
parent
843fb302eb
commit
6674dea840
2 changed files with 8 additions and 0 deletions
|
@ -85,6 +85,7 @@ with lib;
|
|||
{
|
||||
inherit (config)
|
||||
extraPython3Packages
|
||||
extraLuaPackages
|
||||
viAlias
|
||||
vimAlias
|
||||
withRuby
|
||||
|
|
7
tests/test-sources/modules/output.nix
Normal file
7
tests/test-sources/modules/output.nix
Normal file
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
extraLuaPackages = {
|
||||
extraLuaPackages = ps: [ ps.jsregexp ];
|
||||
# Make sure jsregexp is in LUA_PATH
|
||||
extraConfigLua = ''require("jsregexp")'';
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue