nixvim/config/plugins/themes/default.nix
2024-04-17 15:31:44 +02:00

47 lines
1.2 KiB
Nix

{config, ...}: let
lua = x: {__raw = x;};
in {
colorschemes = {
catppuccin = {
enable = true;
settings = {
background = {
light = "macchiato";
dark = "mocha";
};
flavour = "frappe"; # "latte", "mocha", "frappe", "macchiato" or raw lua code
no_bold = false;
no_italic = false;
no_underline = false;
transparent_background = true;
integrations = {
cmp = true;
noice = true;
notify = true;
gitsigns = true;
which_key = true;
illuminate = {
enabled = true;
};
treesitter = true;
treesitter_context = true;
telescope.enabled = true;
indent_blankline.enabled = true;
mini.enabled = true;
native_lsp = {
enabled = true;
inlay_hints = {
background = true;
};
underlines = {
errors = ["underline"];
hints = ["underline"];
information = ["underline"];
warnings = ["underline"];
};
};
};
};
};
};
}