Replies: 2 comments
-
You should be able to add it to |
Beta Was this translation helpful? Give feedback.
0 replies
-
Using as follows works for me: extraPlugins =
builtins.attrValues {
inherit (unstable.vimPlugins)
faster-nvim
;
}
;
nixpkgs.pkgs = unstable;
nixpkgs.overlays = [
(
final: prev: {
neovim-unwrapped =
inputs.neovim-nightly-overlay.packages.${final.stdenv.hostPlatform.system}.default;
vimPlugins =
prev.vimPlugins
// {
faster-nvim = final.vimUtils.buildVimPlugin {
name = "faster-nvim";
src = inputs.name;
};
};
}
)
]; |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
How do I use a plugin in nixvim after putting say
Beta Was this translation helpful? Give feedback.
All reactions