nix-community.nixvim/plugins/colorschemes/dracula-nvim.nix
Austin Horstman c37031d71f
treewide: luaName -> moduleName
Jus to closer align with its usage.
2024-12-13 21:30:36 -06:00

15 lines
326 B
Nix

{ lib, ... }:
lib.nixvim.neovim-plugin.mkNeovimPlugin {
name = "dracula-nvim";
packPathName = "dracula.nvim ";
moduleName = "dracula";
colorscheme = "dracula";
isColorscheme = true;
maintainers = [ lib.maintainers.refaelsh ];
settingsExample = {
italic_comment = true;
colors.green = "#00FF00";
};
}