colorschemes/dracula-nvim: fixes

This commit is contained in:
Austin Horstman 2024-09-03 18:21:38 -05:00
parent 3f9cf9f961
commit d928d6deb1
No known key found for this signature in database
2 changed files with 9 additions and 8 deletions

View file

@ -4,16 +4,17 @@
... ...
}: }:
lib.nixvim.neovim-plugin.mkNeovimPlugin { lib.nixvim.neovim-plugin.mkNeovimPlugin {
name = "dracula"; name = "dracula-nvim";
originalName = "dracula.nvim "; originalName = "dracula.nvim ";
luaName = "dracula";
colorscheme = "dracula";
defaultPackage = pkgs.vimPlugins.dracula-nvim; defaultPackage = pkgs.vimPlugins.dracula-nvim;
isColorscheme = true;
maintainers = [ lib.nixvim.maintainers.refaelsh ]; maintainers = [ lib.nixvim.maintainers.refaelsh ];
settingsExample = { settingsExample = {
settings = {
italic_comment = true; italic_comment = true;
colors.green = "#00FF00"; colors.green = "#00FF00";
}; };
};
} }

View file

@ -1,16 +1,16 @@
{ {
empty = { empty = {
plugins.dracula.enable = true; colorschemes.dracula-nvim.enable = true;
}; };
default = { default = {
plugins.dracula = { colorschemes.dracula-nvim = {
enable = true; enable = true;
}; };
}; };
example = { example = {
plugins.dracula = { colorschemes.dracula-nvim = {
enable = true; enable = true;
settings = { settings = {
italic_comment = true; italic_comment = true;