plugins/dracula.nvim: init

This commit is contained in:
refaelsh 2024-09-03 21:56:46 +03:00
parent 18b7597e6c
commit f3a811cf25
3 changed files with 42 additions and 0 deletions

View file

@ -0,0 +1,20 @@
{
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";
};
};
}

View file

@ -12,6 +12,7 @@
./colorschemes/base16
./colorschemes/catppuccin.nix
./colorschemes/cyberdream.nix
./colorschemes/dracula-nvim.nix
./colorschemes/dracula.nix
./colorschemes/everforest.nix
./colorschemes/gruvbox.nix

View file

@ -0,0 +1,21 @@
{
empty = {
plugins.dracula.enable = true;
};
default = {
plugins.dracula = {
enable = true;
};
};
example = {
plugins.dracula = {
enable = true;
settings = {
italic_comment = true;
colors.green = "#00FF00";
};
};
};
}