2024-09-03 21:56:46 +03:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
pkgs,
|
|
|
|
...
|
|
|
|
}:
|
2024-09-03 22:25:54 +03:00
|
|
|
lib.nixvim.neovim-plugin.mkNeovimPlugin {
|
2024-09-03 18:21:38 -05:00
|
|
|
name = "dracula-nvim";
|
2024-09-03 21:56:46 +03:00
|
|
|
originalName = "dracula.nvim ";
|
2024-09-03 18:21:38 -05:00
|
|
|
luaName = "dracula";
|
|
|
|
colorscheme = "dracula";
|
2024-09-03 21:56:46 +03:00
|
|
|
defaultPackage = pkgs.vimPlugins.dracula-nvim;
|
2024-09-03 18:21:38 -05:00
|
|
|
isColorscheme = true;
|
2024-09-03 21:56:46 +03:00
|
|
|
|
|
|
|
maintainers = [ lib.nixvim.maintainers.refaelsh ];
|
|
|
|
|
|
|
|
settingsExample = {
|
2024-09-03 18:21:38 -05:00
|
|
|
italic_comment = true;
|
|
|
|
colors.green = "#00FF00";
|
2024-09-03 21:56:46 +03:00
|
|
|
};
|
|
|
|
}
|