nix-community.nixvim/plugins/colorschemes/dracula-nvim.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
326 B
Nix
Raw Normal View History

{ 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";
packPathName = "dracula.nvim ";
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
};
}