mirror of
https://github.com/NotAShelf/neovim-flake.git
synced 2024-11-15 20:25:58 +01:00
a0197fe1bb
The "new" DAG order is as follows: - (luaConfigPre) - globalsScript - basic - theme - pluginConfigs - extraPluginConfigs - mappings - (luaConfigPost)
21 lines
401 B
Nix
21 lines
401 B
Nix
{
|
|
config,
|
|
lib,
|
|
...
|
|
}: let
|
|
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"
|
|
];
|
|
|
|
vim.pluginRC.project-nvim = entryAnywhere ''
|
|
require('project_nvim').setup(${toLuaObject cfg.setupOpts})
|
|
'';
|
|
};
|
|
}
|