mirror of
https://github.com/akr2002/nv.git
synced 2024-11-09 10:39:44 +00:00
add colorscheme catpuccin
This commit is contained in:
parent
8866dc26c3
commit
62e5cffd47
2 changed files with 48 additions and 0 deletions
46
config/colorschemes/catppuccin.nix
Normal file
46
config/colorschemes/catppuccin.nix
Normal file
|
@ -0,0 +1,46 @@
|
|||
{
|
||||
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"];
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
@ -3,6 +3,8 @@
|
|||
./bufferlines/bufferlines.nix
|
||||
|
||||
./colorschemes/base16.nix
|
||||
./colorschemes/catppuccin.nix
|
||||
|
||||
./sets.nix
|
||||
./dap/dap.nix
|
||||
./keymaps.nix
|
||||
|
|
Loading…
Reference in a new issue