2024-09-02 14:05:11 +01:00
|
|
|
{ lib, ... }:
|
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-12-13 08:27:14 -06:00
|
|
|
packPathName = "dracula.nvim ";
|
2024-12-13 08:28:39 -06:00
|
|
|
moduleName = "dracula";
|
2024-09-03 18:21:38 -05:00
|
|
|
colorscheme = "dracula";
|
|
|
|
isColorscheme = true;
|
2024-09-03 21:56:46 +03:00
|
|
|
|
2024-09-27 05:28:00 +01:00
|
|
|
maintainers = [ lib.maintainers.refaelsh ];
|
2024-09-03 21:56:46 +03:00
|
|
|
|
|
|
|
settingsExample = {
|
2024-09-03 18:21:38 -05:00
|
|
|
italic_comment = true;
|
|
|
|
colors.green = "#00FF00";
|
2024-09-03 21:56:46 +03:00
|
|
|
};
|
|
|
|
}
|