nix-community.nixvim/plugins/colorschemes/oxocarbon.nix
Matt Sturgeon 7b94afceaf
plugins: cleanup most extraConfig args
- Remove `cfg` where it is unused.
- Use `opts` where necessary.
2024-11-20 20:55:16 +00:00

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;
};
}