mirror of
https://github.com/nix-community/nixvim.git
synced 2025-11-18 00:12:48 +01:00
15 lines
249 B
Nix
15 lines
249 B
Nix
{
|
|
lib,
|
|
...
|
|
}:
|
|
lib.nixvim.plugins.mkVimPlugin {
|
|
name = "oxocarbon";
|
|
isColorscheme = true;
|
|
package = "oxocarbon-nvim";
|
|
|
|
maintainers = [ lib.maintainers.GaetanLepage ];
|
|
|
|
extraConfig = {
|
|
opts.termguicolors = lib.mkDefault true;
|
|
};
|
|
}
|