1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-08 19:46:06 +01:00
nixvim/plugins/colorschemes/dracula-nvim.nix
saygo-png c4b27080a6 treewide: infer packPathName menial work
Signed-off-by: saygo-png <saygo.mail@proton.me>
2025-09-27 23:49:59 +00:00

14 lines
286 B
Nix

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