This commit is contained in:
Hadi
2024-10-05 11:48:16 +02:00
parent 270c1b959e
commit 23dcfd5290
14 changed files with 531 additions and 298 deletions

View File

@@ -1,47 +1,47 @@
{
programs.nixvim = {
colorschemes = {
catppuccin = {
enable = true;
settings = {
background = {
light = "macchiato";
dark = "mocha";
};
flavour =
"mocha"; # "latte", "mocha", "frappe", "macchiato" or raw lua code
disable_bold = false;
disable_italic = false;
disable_underline = false;
transparent_background = true;
term_colors = 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" ];
};
};
};
};
};
};
# colorschemes = {
# catppuccin = {
# enable = true;
# settings = {
# background = {
# light = "macchiato";
# dark = "mocha";
# };
# flavour =
# "mocha"; # "latte", "mocha", "frappe", "macchiato" or raw lua code
# disable_bold = false;
# disable_italic = false;
# disable_underline = false;
# transparent_background = true;
# term_colors = 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" ];
# };
# };
# };
# };
# };
# };
};
}