lib/neovim-plugin: drop config arg

This commit is contained in:
Matt Sturgeon 2024-09-01 12:52:28 +01:00
parent 2a054b039e
commit 18b7597e6c
No known key found for this signature in database
GPG key ID: 4F91844CED1A8299
101 changed files with 127 additions and 201 deletions

View file

@ -1,6 +1,5 @@
{
lib,
config,
pkgs,
...
}:
@ -11,7 +10,7 @@ let
luaName = "base16-colorscheme";
originalName = "base16.nvim";
in
lib.nixvim.neovim-plugin.mkNeovimPlugin config {
lib.nixvim.neovim-plugin.mkNeovimPlugin {
inherit name luaName originalName;
setup = ".with_config";
defaultPackage = pkgs.vimPlugins.base16-nvim;