basic structure, colorschemes and astrocore
This commit is contained in:
commit
dc02604cdf
10 changed files with 390 additions and 0 deletions
16
config/colorscheme.nix
Normal file
16
config/colorscheme.nix
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
{lib,...}: {
|
||||
colorscheme = lib.mkOverride 500 "kanagawa";
|
||||
|
||||
colorschemes = (builtins.listToAttrs
|
||||
(map
|
||||
(scheme: { name = scheme; value = {enable = true;};})
|
||||
[
|
||||
"tokyonight"
|
||||
"nord"
|
||||
"rose-pine"
|
||||
"kanagawa"
|
||||
"gruvbox"
|
||||
"everforest"
|
||||
])
|
||||
);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue