nixvim
nixvim copied to clipboard
how to lazy: plugins with submodules
Hey all
I'm new to nix and nixvim. I'm trying to wrap my head around using plugins.lazy.plugins.
Can anyone show me how to use this with submodules ? I got something like this atm
plugins = with pkgs.vimPlugins; [
{
pkg = telescope-nvim;
lazy = true;
}
./bufferline.nix
];
while bufferline.nix:
{ pkgs, ... }: {
pkg = pkgs.vimPlugins.bufferline-nvim;
}
its telling me error: attribute 'pkgs' missing. Any help would be appreciated!