From 58cf6f971b78170aef5f26ccb79149213f4a692d Mon Sep 17 00:00:00 2001 From: Iordanis Petkakis <12776461+dpetka2001@users.noreply.github.com> Date: Thu, 16 May 2024 23:02:26 +0300 Subject: [PATCH] fix(news.md): correct phrase to disable `inlay_hints` --- NEWS.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/NEWS.md b/NEWS.md index 0d425f43..34edd6d6 100644 --- a/NEWS.md +++ b/NEWS.md @@ -15,13 +15,13 @@ Additionally, some core plugins have been moved to extras. `nvim-ts-context-commentstring` has been integrated in the native comments. - `inlay hints` have been in **LazyVim** for a while, but are now - enabled by default. To disable then: + enabled by default. To disable them: ```lua { "nvim-lspconfig", opts = { - inlay_hints = { enabled = true }, + inlay_hints = { enabled = false }, } } ```