mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 08:35:43 +02:00
colorschemes/dracula-nvim: fixes
This commit is contained in:
parent
3f9cf9f961
commit
d928d6deb1
2 changed files with 9 additions and 8 deletions
|
@ -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";
|
||||||
};
|
};
|
||||||
};
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -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;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue