Merge remote-tracking branch 'origin' into restructure

This commit is contained in:
raf 2024-02-19 10:50:42 +03:00
commit 4083a74281
No known key found for this signature in database
GPG key ID: 02D1DD3FA08B6B29
4 changed files with 21 additions and 3 deletions

View file

@ -153,6 +153,14 @@ in {
'';
};
luaPackages = mkOption {
type = types.listOf types.str;
default = [];
description = ''
List of lua packages to install.
'';
};
globals = mkOption {
default = {};
description = "Set containing global variable values";

View file

@ -23,6 +23,8 @@ inputs: {
vimOptions = module.config.vim;
extraLuaPackages = ps: map (x: ps.${x}) vimOptions.luaPackages;
buildPlug = {pname, ...} @ args:
assert lib.asserts.assertMsg (pname != "nvim-treesitter") "Use buildTreesitterPlug for building nvim-treesitter.";
buildVimPlugin (args
@ -59,6 +61,8 @@ inputs: {
inherit (vimOptions) viAlias;
inherit (vimOptions) vimAlias;
inherit extraLuaPackages;
configure = {
customRC = vimOptions.builtConfigRC;