nixos/home/modules/ide/nvim/themes.nix

30 lines
538 B
Nix

{
colorschemes = {
# tokyonight
tokyonight = {
enable = false;
settings = {
transparent = true;
style = "night"; # options: "storm", "night", "day", "moon"
cmp = true;
illuminate = true;
indentblankline = true;
lsp_semantic = true;
mini_completion = true;
};
};
# kanagawa
kanagawa = {
enable = false;
settings = {
transparent = true;
};
};
# oxocarbon
oxocarbon = {
enable = true;
};
};
}