forked from nix-community/nixvim
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpalette.nix
150 lines (134 loc) · 3.93 KB
/
palette.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
{
lib,
helpers,
config,
pkgs,
...
}:
with lib; let
cfg = config.colorschemes.palette;
in {
meta.maintainers = [maintainers.GaetanLepage];
options.colorschemes.palette =
helpers.extraOptionsOptions
// {
enable = mkEnableOption "palette.nvim";
package = helpers.mkPackageOption "palette.nvim" pkgs.vimPlugins.palette-nvim;
palettes = {
main = helpers.defaultNullOpts.mkStr "dark" ''
Palette for the main colors.
'';
accent = helpers.defaultNullOpts.mkStr "pastel" ''
Palette for the accent colors.
'';
state = helpers.defaultNullOpts.mkStr "pastel" ''
Palette for the state colors.
'';
};
customPalettes =
mapAttrs
(
name: colorNames:
helpers.defaultNullOpts.mkAttrsOf (
types.submodule {
options =
genAttrs
colorNames
(
colorName:
mkOption {
type = types.str;
description = "Definition of color '${colorName}'";
}
);
}
)
"{}"
''
Custom palettes for ${name} colors.
''
) {
main = [
"color0"
"color1"
"color2"
"color3"
"color4"
"color5"
"color6"
"color7"
"color8"
];
accent = [
"accent0"
"accent1"
"accent2"
"accent3"
"accent4"
"accent5"
"accent6"
];
state = [
"error"
"warning"
"hint"
"ok"
"info"
];
};
italics = helpers.defaultNullOpts.mkBool true ''
Whether to use italics.
'';
transparentBackground = helpers.defaultNullOpts.mkBool false ''
Whether to use transparent background.
'';
caching = helpers.defaultNullOpts.mkBool true ''
Whether to enable caching.
'';
cacheDir =
helpers.defaultNullOpts.mkStr
''{__raw = "vim.fn.stdpath('cache') .. '/palette'";}''
"Cache directory.";
};
config = mkIf cfg.enable {
assertions =
mapAttrsToList (
name: defaultPaletteNames: let
palette = cfg.palettes.${name};
allowedPaletteNames = (attrNames cfg.customPalettes.${name}) ++ defaultPaletteNames;
in {
assertion = isString palette -> elem palette allowedPaletteNames;
message = ''
Nixvim: `colorschemes.palette.palettes.${name}` (${palette}") is not part of the allowed ${name} palette names (${concatStringsSep " " allowedPaletteNames}).
'';
}
)
{
main = ["dark" "light"];
accent = ["pastel" "dark" "bright"];
state = ["pastel" "dark" "bright"];
};
colorscheme = "palette";
extraPlugins = [
cfg.package
# Annoyingly, lspconfig is required, otherwise this line is breaking:
# https://github.com/roobert/palette.nvim/blob/a808c190a4f74f73782302152ebf323660d8db5f/lua/palette/init.lua#L45https://github.com/roobert/palette.nvim/blob/a808c190a4f74f73782302152ebf323660d8db5f/lua/palette/init.lua#L45
# An issue has been opened upstream to warn the maintainer: https://github.com/roobert/palette.nvim/issues/2
pkgs.vimPlugins.nvim-lspconfig
];
extraConfigLuaPre = let
setupOptions = with cfg;
{
inherit palettes;
custom_palettes = customPalettes;
inherit italics;
transparent_background = transparentBackground;
inherit caching;
cache_dir = cacheDir;
}
// cfg.extraOptions;
in ''
require('palette').setup(${helpers.toLuaObject setupOptions})
'';
};
}