nixos/home/modules/ide/nvim/themes.nix
2025-11-16 01:03:19 +01:00

24 lines
459 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 = {
enable = true;
settings = {
transparent = true;
};
};
};
}