mirror of
https://github.com/nix-community/nixvim.git
synced 2025-07-02 21:34:33 +02:00
16 lines
287 B
Nix
16 lines
287 B
Nix
{
|
|
lib,
|
|
...
|
|
}:
|
|
lib.nixvim.vim-plugin.mkVimPlugin {
|
|
name = "oxocarbon";
|
|
isColorscheme = true;
|
|
originalName = "oxocarbon.nvim";
|
|
package = "oxocarbon-nvim";
|
|
|
|
maintainers = [ lib.maintainers.GaetanLepage ];
|
|
|
|
extraConfig = {
|
|
opts.termguicolors = lib.mkDefault true;
|
|
};
|
|
}
|