mirror of
https://github.com/nix-community/nixvim.git
synced 2025-08-31 07:09:40 +02:00
21 lines
357 B
Nix
21 lines
357 B
Nix
|
{
|
||
|
lib,
|
||
|
config,
|
||
|
pkgs,
|
||
|
...
|
||
|
}:
|
||
|
lib.nixvim.neovim-plugin.mkNeovimPlugin config {
|
||
|
name = "dracula";
|
||
|
originalName = "dracula.nvim ";
|
||
|
defaultPackage = pkgs.vimPlugins.dracula-nvim;
|
||
|
|
||
|
maintainers = [ lib.nixvim.maintainers.refaelsh ];
|
||
|
|
||
|
settingsExample = {
|
||
|
settings = {
|
||
|
italic_comment = true;
|
||
|
colors.green = "#00FF00";
|
||
|
};
|
||
|
};
|
||
|
}
|