nix-community.nixvim/plugins/colorschemes/oxocarbon.nix
Austin Horstman a7012e7864
treewide: originalName -> packPathName
We used to only think of it as the plugin repo's name, but we have been
needing to use it for the name of the plugin's packpath location.
2024-12-13 21:29:00 -06:00

16 lines
287 B
Nix

{
lib,
...
}:
lib.nixvim.vim-plugin.mkVimPlugin {
name = "oxocarbon";
isColorscheme = true;
packPathName = "oxocarbon.nvim";
package = "oxocarbon-nvim";
maintainers = [ lib.maintainers.GaetanLepage ];
extraConfig = {
opts.termguicolors = lib.mkDefault true;
};
}