nix-community.nixvim/plugins/colorschemes/dracula-nvim.nix
Matt Sturgeon 1fd4b6c739
plugins: migrate defaultPackage -> package
Migrate all users of `mkVimPlugin` and `mkNeovimPlugin` to use the new
`package` argument instead of the old `defaultPackage` argument.
2024-09-04 03:29:34 +01:00

15 lines
330 B
Nix

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