neovim: changes to how we access nvf.lib

This commit is contained in:
ooks-io 2025-01-06 16:27:13 +11:00
parent 7868ac1529
commit 8d9c2a0ed2
39 changed files with 30 additions and 28 deletions

View file

@ -0,0 +1,10 @@
{
imports = [
./settings.nix
./opts.nix
./theme.nix
./keymaps.nix
./plugins
./modules
];
}

View file

@ -7,7 +7,7 @@
}: let
inherit (lib) mkOption mkIf boolToString;
inherit (lib.types) bool enum lines;
inherit (inputs.nvf.lib.nvim.dag) entryAfter;
inherit (lib.nvim.dag) entryAfter;
cfg = config.vim.gruvbox-material;
in {

View file

@ -1,10 +1,13 @@
{
imports = [
./settings.nix
./opts.nix
./theme.nix
./keymaps.nix
./plugins
./modules
];
}
inputs,
pkgs,
...
}: let
configuration = import ./config;
ooks-vim = inputs.nvf.lib.neovimConfiguration {
inherit pkgs;
extraSpecialArgs = {inherit inputs;};
modules = [configuration];
};
in
ooks-vim.neovim