From 950a4edc9dfa6b3f244dd07c6d6bb953b0708ffb Mon Sep 17 00:00:00 2001 From: Luke Else Date: Fri, 28 Jul 2023 13:29:26 +0100 Subject: [PATCH] Re-Changed inlay hints to be on the current line. In retrospect they just get in the way if there are on every single line :) --- nvim/after/plugin/inlay.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nvim/after/plugin/inlay.lua b/nvim/after/plugin/inlay.lua index 562d58c..803b80c 100644 --- a/nvim/after/plugin/inlay.lua +++ b/nvim/after/plugin/inlay.lua @@ -1,3 +1,3 @@ local inlay = require('inlay-hints').setup({ - only_current_line = false, + only_current_line = true, })