Configured Navic and integrated it with Lualine. This provides context about the code that is being worked on. Also added a PAT to be able to create a PR when the Flake Update Github action runs.
55 lines
1.4 KiB
Nix
55 lines
1.4 KiB
Nix
{
|
|
colorschemes = {
|
|
catppuccin = {
|
|
enable = true;
|
|
settings = {
|
|
background = {
|
|
light = "macchiato";
|
|
dark = "mocha";
|
|
};
|
|
custom_highlights = ''
|
|
function(numbercolor)
|
|
return {
|
|
CursorLineNr = { fg = numbercolor.peach, style = {} },
|
|
}
|
|
end
|
|
'';
|
|
flavour = "macchiato"; # "latte", "mocha", "frappe", "macchiato" or raw lua code
|
|
no_bold = false;
|
|
no_italic = false;
|
|
no_underline = false;
|
|
transparent_background = true;
|
|
integrations = {
|
|
cmp = true;
|
|
notify = true;
|
|
gitsigns = true;
|
|
neotree = true;
|
|
which_key = true;
|
|
illuminate = {
|
|
enabled = true;
|
|
};
|
|
navic = {
|
|
enabled = true;
|
|
custom_bg = "NONE";
|
|
};
|
|
treesitter = 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"];
|
|
};
|
|
};
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|