mirror of
https://github.com/nix-community/nixvim.git
synced 2025-07-31 08:05:23 +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
|
@ -62,6 +62,8 @@ in {
|
|||
|
||||
disableBold = helpers.defaultNullOpts.mkBool false "Force no bold";
|
||||
|
||||
disableUnderline = helpers.defaultNullOpts.mkBool false "Force no underline";
|
||||
|
||||
styles = {
|
||||
comments =
|
||||
helpers.defaultNullOpts.mkNullable (types.listOf types.str)
|
||||
|
@ -326,6 +328,7 @@ in {
|
|||
dim_inactive = dimInactive;
|
||||
no_italic = disableItalic;
|
||||
no_bold = disableBold;
|
||||
no_underline = disableUnderline;
|
||||
color_overrides = colorOverrides;
|
||||
custom_highlights =
|
||||
helpers.ifNonNull' cfg.customHighlights
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue