mirror of
https://github.com/nix-community/nixvim.git
synced 2025-07-24 04:35:08 +02:00
plugins/catppuccin: add disableUnderline option (#669)
* plugins/catppuccin: add `disableUnderline` option * re-test? * fix ci
This commit is contained in:
parent
e1138cda39
commit
315bc508ee
2 changed files with 9 additions and 4 deletions
|
@ -4,7 +4,7 @@
|
|||
colorschemes.catppuccin.enable = true;
|
||||
};
|
||||
|
||||
# All the upstream default options of poimandres
|
||||
# All the upstream default options of catppuccin
|
||||
defaults = {
|
||||
colorschemes.catppuccin = {
|
||||
enable = true;
|
||||
|
@ -14,15 +14,13 @@
|
|||
dark = "mocha";
|
||||
};
|
||||
transparentBackground = false;
|
||||
terminalColors = true;
|
||||
terminalColors = false;
|
||||
showBufferEnd = false;
|
||||
dimInactive = {
|
||||
enabled = true;
|
||||
shade = "dark";
|
||||
percentage = 0.15;
|
||||
};
|
||||
disableItalic = true;
|
||||
disableBold = true;
|
||||
styles = {
|
||||
comments = ["italic"];
|
||||
conditionals = ["italic"];
|
||||
|
@ -58,6 +56,10 @@
|
|||
terminalColors = true;
|
||||
colorOverrides.mocha.base = "#1e1e2f";
|
||||
|
||||
disableItalic = true;
|
||||
disableBold = true;
|
||||
disableUnderline = true;
|
||||
|
||||
integrations = {
|
||||
barbar = true;
|
||||
fidget = true;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue