mirror of
https://github.com/akr2002/nv.git
synced 2025-02-05 10:30:02 +00:00
47 lines
1.1 KiB
Nix
47 lines
1.1 KiB
Nix
|
{
|
||
|
colorschemes = {
|
||
|
catppuccin = {
|
||
|
enable = true;
|
||
|
background = {
|
||
|
light = "macchiato";
|
||
|
dark = "mocha";
|
||
|
};
|
||
|
flavour = "mocha"; # "latte", "mocha", "frappe", "macchiato" or raw lua code
|
||
|
disableBold = false;
|
||
|
disableItalic = false;
|
||
|
disableUnderline = false;
|
||
|
transparentBackground = true;
|
||
|
integrations = {
|
||
|
cmp = true;
|
||
|
noice = true;
|
||
|
notify = true;
|
||
|
neotree = true;
|
||
|
harpoon = 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"];
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|
||
|
|