12.nixvim/plugins/colorschemes/dracula-nvim.nix
Austin Horstman a7012e7864
treewide: originalName -> packPathName
We used to only think of it as the plugin repo's name, but we have been
needing to use it for the name of the plugin's packpath location.
2024-12-13 21:29:00 -06:00

15 lines
323 B
Nix

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