nix-community.nixvim/plugins/colorschemes/dracula-nvim.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
357 B
Nix
Raw Normal View History

2024-09-03 21:56:46 +03:00
{
lib,
config,
pkgs,
...
}:
lib.nixvim.neovim-plugin.mkNeovimPlugin config {
name = "dracula";
originalName = "dracula.nvim ";
defaultPackage = pkgs.vimPlugins.dracula-nvim;
maintainers = [ lib.nixvim.maintainers.refaelsh ];
settingsExample = {
settings = {
italic_comment = true;
colors.green = "#00FF00";
};
};
}