nixos/home/modules/ide/nvim/themes.nix
2026-01-25 04:08:11 +01:00

30 lines
534 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;
};
};
# moonfly
moonfly = {
enable = true;
};
};
}