mirror of
https://github.com/nix-community/nixvim.git
synced 2025-07-16 12:14:32 +02:00
20 lines
391 B
Nix
20 lines
391 B
Nix
{
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
lib.nixvim.neovim-plugin.mkNeovimPlugin {
|
|
name = "dracula-nvim";
|
|
originalName = "dracula.nvim ";
|
|
luaName = "dracula";
|
|
colorscheme = "dracula";
|
|
defaultPackage = pkgs.vimPlugins.dracula-nvim;
|
|
isColorscheme = true;
|
|
|
|
maintainers = [ lib.nixvim.maintainers.refaelsh ];
|
|
|
|
settingsExample = {
|
|
italic_comment = true;
|
|
colors.green = "#00FF00";
|
|
};
|
|
}
|