nvf/modules/plugins/projects/project-nvim/config.nix

22 lines
404 B
Nix
Raw Normal View History

2023-04-07 17:35:04 +00:00
{
config,
lib,
...
}: let
2024-04-19 19:28:07 +00:00
inherit (lib.modules) mkIf;
inherit (lib.nvim.dag) entryAnywhere;
inherit (lib.nvim.lua) toLuaObject;
cfg = config.vim.projects.project-nvim;
in {
config = mkIf cfg.enable {
vim.startPlugins = [
"project-nvim"
];
2024-04-19 19:28:07 +00:00
vim.luaConfigRC.project-nvim = entryAnywhere ''
require('project_nvim').setup(${toLuaObject cfg.setupOpts})
'';
2023-04-07 17:35:04 +00:00
};
}