mirror of
https://github.com/nix-community/nixvim.git
synced 2025-07-16 04:04:34 +02:00
plugins/catppuccin: add colorscheme + test
This commit is contained in:
parent
1d478841f8
commit
a10b6f02cd
3 changed files with 403 additions and 0 deletions
50
tests/test-sources/plugins/colorschemes/catppuccin.nix
Normal file
50
tests/test-sources/plugins/colorschemes/catppuccin.nix
Normal file
|
@ -0,0 +1,50 @@
|
|||
{
|
||||
# Empty configuration
|
||||
empty = {colorschemes.catppuccin.enable = true;};
|
||||
|
||||
# All the upstream default options of poimandres
|
||||
defaults = {
|
||||
colorschemes.catppuccin = {
|
||||
enable = true;
|
||||
flavour = "mocha";
|
||||
background = {
|
||||
light = "latte";
|
||||
dark = "mocha";
|
||||
};
|
||||
transparentBackground = false;
|
||||
terminalColors = true;
|
||||
showBufferEnd = false;
|
||||
dimInactive = {
|
||||
enabled = true;
|
||||
shade = "dark";
|
||||
percentage = 0.15;
|
||||
};
|
||||
disableItalic = true;
|
||||
disableBold = true;
|
||||
styles = {
|
||||
comments = ["italic"];
|
||||
conditionals = ["italic"];
|
||||
loops = [];
|
||||
functions = [];
|
||||
keywords = [];
|
||||
strings = [];
|
||||
variables = [];
|
||||
numbers = [];
|
||||
booleans = [];
|
||||
properties = [];
|
||||
types = [];
|
||||
operators = [];
|
||||
};
|
||||
colorOverrides = {};
|
||||
customHighlights = {};
|
||||
integrations = {
|
||||
cmp = true;
|
||||
gitsigns = true;
|
||||
nvimtree = true;
|
||||
telescope = true;
|
||||
notify = false;
|
||||
mini = false;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue