plugins/base16: fix packPathName

This commit is contained in:
Austin Horstman 2025-01-26 11:45:59 -06:00
parent 63d9bb0d77
commit 8e5422bf3e

View file

@ -7,10 +7,10 @@ let
name = "base16";
moduleName = "base16-colorscheme";
packPathName = "base16.nvim";
in
lib.nixvim.plugins.mkNeovimPlugin {
inherit name moduleName packPathName;
inherit name moduleName;
packPathName = "base16-nvim";
setup = ".with_config";
package = "base16-nvim";
isColorscheme = true;