mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 08:35:43 +02:00
colorschemes/dracula: switch to mkVimPlugin
This commit is contained in:
parent
2b5a4a3896
commit
c181014422
2 changed files with 80 additions and 77 deletions
|
@ -1,87 +1,75 @@
|
||||||
{
|
{
|
||||||
lib,
|
lib,
|
||||||
config,
|
|
||||||
pkgs,
|
|
||||||
...
|
...
|
||||||
}:
|
}:
|
||||||
let
|
let
|
||||||
inherit (lib) types;
|
inherit (lib.nixvim) defaultNullOpts;
|
||||||
cfg = config.colorschemes.dracula;
|
|
||||||
in
|
in
|
||||||
{
|
lib.nixvim.vim-plugin.mkVimPlugin {
|
||||||
options = {
|
name = "dracula";
|
||||||
colorschemes.dracula = {
|
package = "dracula-vim";
|
||||||
enable = lib.mkEnableOption "dracula";
|
isColorscheme = true;
|
||||||
|
globalPrefix = "dracula_";
|
||||||
|
|
||||||
package = lib.mkPackageOption pkgs "dracula" {
|
maintainers = [ lib.maintainers.GaetanLepage ];
|
||||||
default = [
|
|
||||||
"vimPlugins"
|
|
||||||
"dracula-vim"
|
|
||||||
];
|
|
||||||
};
|
|
||||||
|
|
||||||
bold = lib.mkOption {
|
optionsRenamedToSettings = [
|
||||||
type = types.bool;
|
"bold"
|
||||||
default = true;
|
"italic"
|
||||||
description = "Include bold attributes in highlighting";
|
"underline"
|
||||||
};
|
"undercurl"
|
||||||
italic = lib.mkOption {
|
"fullSpecialAttrsSupport"
|
||||||
type = types.bool;
|
"highContrastDiff"
|
||||||
default = true;
|
"inverse"
|
||||||
description = "Include italic attributes in highlighting";
|
"colorterm"
|
||||||
};
|
];
|
||||||
underline = lib.mkOption {
|
|
||||||
type = types.bool;
|
|
||||||
default = true;
|
|
||||||
description = "Include underline attributes in highlighting";
|
|
||||||
};
|
|
||||||
undercurl = lib.mkOption {
|
|
||||||
type = types.bool;
|
|
||||||
default = true;
|
|
||||||
description = "Include undercurl attributes in highlighting (only if underline enabled)";
|
|
||||||
};
|
|
||||||
|
|
||||||
fullSpecialAttrsSupport = lib.mkOption {
|
settingsOptions = {
|
||||||
type = types.bool;
|
bold = defaultNullOpts.mkBool true ''
|
||||||
default = false;
|
Include bold attributes in highlighting.
|
||||||
description = "Explicitly declare full support for special attributes. On terminal emulators, set to 1 to allow underline/undercurl highlights without changing the foreground color";
|
'';
|
||||||
};
|
|
||||||
|
|
||||||
highContrastDiff = lib.mkOption {
|
italic = defaultNullOpts.mkBool true ''
|
||||||
type = types.bool;
|
Include italic attributes in highlighting.
|
||||||
default = false;
|
'';
|
||||||
description = "Use high-contrast color when in diff mode";
|
|
||||||
};
|
|
||||||
|
|
||||||
inverse = lib.mkOption {
|
strikethrough = defaultNullOpts.mkBool true ''
|
||||||
type = types.bool;
|
Include strikethrough attributes in highlighting.
|
||||||
default = true;
|
'';
|
||||||
description = "Include inverse attributes in highlighting";
|
|
||||||
};
|
|
||||||
|
|
||||||
colorterm = lib.mkOption {
|
underline = defaultNullOpts.mkBool true ''
|
||||||
type = types.bool;
|
Include underline attributes in highlighting.
|
||||||
default = true;
|
'';
|
||||||
description = "Include background fill colors";
|
|
||||||
};
|
undercurl = defaultNullOpts.mkBool true ''
|
||||||
};
|
Include undercurl attributes in highlighting (only if `underline` is enabled).
|
||||||
|
'';
|
||||||
|
|
||||||
|
full_special_attrs_support = defaultNullOpts.mkBool false ''
|
||||||
|
Explicitly declare full support for special attributes.
|
||||||
|
On terminal emulators, set to `true` to allow `underline`/`undercurl` highlights without
|
||||||
|
changing the foreground color.
|
||||||
|
'';
|
||||||
|
|
||||||
|
high_contrast_diff = defaultNullOpts.mkBool false ''
|
||||||
|
Use high-contrast color when in diff mode.
|
||||||
|
'';
|
||||||
|
|
||||||
|
inverse = defaultNullOpts.mkBool true ''
|
||||||
|
Include inverse attributes in highlighting.
|
||||||
|
'';
|
||||||
|
|
||||||
|
colorterm = defaultNullOpts.mkBool true ''
|
||||||
|
Include background fill colors.
|
||||||
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
config = lib.mkIf cfg.enable {
|
settingsExample = {
|
||||||
colorscheme = "dracula";
|
italic = false;
|
||||||
extraPlugins = [ cfg.package ];
|
colorterm = false;
|
||||||
|
};
|
||||||
globals = {
|
|
||||||
dracula_bold = lib.mkIf (!cfg.bold) 0;
|
|
||||||
dracula_italic = lib.mkIf (!cfg.italic) 0;
|
|
||||||
dracula_underline = lib.mkIf (!cfg.underline) 0;
|
|
||||||
dracula_undercurl = lib.mkIf (!cfg.undercurl) 0;
|
|
||||||
dracula_full_special_attrs_support = lib.mkIf cfg.fullSpecialAttrsSupport 1;
|
|
||||||
dracula_high_contrast_diff = lib.mkIf cfg.highContrastDiff 1;
|
|
||||||
dracula_inverse = lib.mkIf (!cfg.inverse) 0;
|
|
||||||
dracula_colorterm = lib.mkIf (!cfg.colorterm) 0;
|
|
||||||
};
|
|
||||||
|
|
||||||
|
extraConfig = {
|
||||||
opts.termguicolors = lib.mkDefault true;
|
opts.termguicolors = lib.mkDefault true;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -6,14 +6,29 @@
|
||||||
defaults = {
|
defaults = {
|
||||||
colorschemes.dracula = {
|
colorschemes.dracula = {
|
||||||
enable = true;
|
enable = true;
|
||||||
bold = true;
|
|
||||||
italic = true;
|
settings = {
|
||||||
underline = true;
|
bold = true;
|
||||||
undercurl = true;
|
italic = true;
|
||||||
fullSpecialAttrsSupport = false;
|
strikethrough = true;
|
||||||
highContrastDiff = false;
|
underline = true;
|
||||||
inverse = true;
|
undercurl = true;
|
||||||
colorterm = true;
|
full_special_attrs_support = false;
|
||||||
|
high_contrast_diff = false;
|
||||||
|
inverse = true;
|
||||||
|
colorterm = true;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
example = {
|
||||||
|
colorschemes.dracula = {
|
||||||
|
enable = true;
|
||||||
|
|
||||||
|
settings = {
|
||||||
|
italic = false;
|
||||||
|
colorterm = false;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue