astronixvim/config/colorscheme.nix

17 lines
291 B
Nix
Raw Permalink Normal View History

{lib,...}: {
colorscheme = lib.mkOverride 500 "kanagawa";
colorschemes = (builtins.listToAttrs
(map
(scheme: { name = scheme; value = {enable = true;};})
[
"tokyonight"
"nord"
"rose-pine"
"kanagawa"
"gruvbox"
"everforest"
])
);
}