30 lines
534 B
Nix
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;
|
|
};
|
|
};
|
|
}
|