mirror of
https://github.com/nix-community/nixvim.git
synced 2025-07-30 15:44:41 +02:00
19 lines
344 B
Nix
19 lines
344 B
Nix
{
|
|
lib,
|
|
helpers,
|
|
config,
|
|
pkgs,
|
|
...
|
|
}:
|
|
helpers.vim-plugin.mkVimPlugin config {
|
|
name = "oxocarbon";
|
|
isColorscheme = true;
|
|
originalName = "oxocarbon.nvim";
|
|
defaultPackage = pkgs.vimPlugins.oxocarbon-nvim;
|
|
|
|
maintainers = [lib.maintainers.GaetanLepage];
|
|
|
|
extraConfig = cfg: {
|
|
opts.termguicolors = lib.mkDefault true;
|
|
};
|
|
}
|