mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-26 10:48:35 +02:00
Migrate all users of `mkVimPlugin` and `mkNeovimPlugin` to use the new `package` argument instead of the old `defaultPackage` argument.
14 lines
286 B
Nix
14 lines
286 B
Nix
{
|
|
lib,
|
|
...
|
|
}:
|
|
lib.nixvim.vim-plugin.mkVimPlugin {
|
|
name = "oxocarbon";
|
|
isColorscheme = true;
|
|
originalName = "oxocarbon.nvim";
|
|
package = "oxocarbon-nvim";
|
|
|
|
maintainers = [ lib.maintainers.GaetanLepage ];
|
|
|
|
extraConfig = cfg: { opts.termguicolors = lib.mkDefault true; };
|
|
}
|