diff --git a/README.md b/README.md index afe32b39..804eacb9 100644 --- a/README.md +++ b/README.md @@ -439,12 +439,14 @@ native_lsp = { hints = { "italic" }, warnings = { "italic" }, information = { "italic" }, + ok = { "italic" }, }, underlines = { errors = { "underline" }, hints = { "underline" }, warnings = { "underline" }, information = { "underline" }, + ok = { "underline" }, }, inlay_hints = { background = true, @@ -1038,12 +1040,14 @@ native_lsp = { hints = { "italic" }, warnings = { "italic" }, information = { "italic" }, + ok = { "italic" }, }, underlines = { errors = { "underline" }, hints = { "underline" }, warnings = { "underline" }, information = { "underline" }, + ok = { "underline" }, }, inlay_hints = { background = true, diff --git a/doc/catppuccin.txt b/doc/catppuccin.txt index 14d2276d..2cdce02d 100644 --- a/doc/catppuccin.txt +++ b/doc/catppuccin.txt @@ -366,12 +366,14 @@ directly at the thing (e.g. an error)). hints = { "italic" }, warnings = { "italic" }, information = { "italic" }, + ok = { "italic" }, }, underlines = { errors = { "underline" }, hints = { "underline" }, warnings = { "underline" }, information = { "underline" }, + ok = { "underline" }, }, inlay_hints = { background = true, @@ -674,12 +676,14 @@ nvim-lspconfig>lua hints = { "italic" }, warnings = { "italic" }, information = { "italic" }, + ok = { "italic" }, }, underlines = { errors = { "underline" }, hints = { "underline" }, warnings = { "underline" }, information = { "underline" }, + ok = { "underline" }, }, inlay_hints = { background = true, diff --git a/lua/catppuccin/types.lua b/lua/catppuccin/types.lua index 8b98a293..65fdc0e0 100644 --- a/lua/catppuccin/types.lua +++ b/lua/catppuccin/types.lua @@ -87,14 +87,16 @@ ---@field miscs CtpHighlightArgs[]? ---@class CtpNativeLspStyles --- Change the style of LSP errors. +-- Change the style of LSP error diagnostics. ---@field errors CtpHighlightArgs[]? --- Change the style of LSP hints. +-- Change the style of LSP hint diagnostics. ---@field hints CtpHighlightArgs[]? --- Change the style of LSP warnings. +-- Change the style of LSP warning diagnostics. ---@field warnings CtpHighlightArgs[]? --- Change the style of LSP information. +-- Change the style of LSP information diagnostics. ---@field information CtpHighlightArgs[]? +-- Change the style of LSP ok diagnostics. +---@field ok CtpHighlightArgs[]? ---@class CtpNativeLspInlayHints -- Toggle the background of inlay hints.