From a72fc7cf4009e8d18c1bbc613e684fb95e3f66fd Mon Sep 17 00:00:00 2001 From: Luke Else Date: Thu, 6 Jul 2023 22:20:04 +0100 Subject: [PATCH] Make inlay hints cover whole document instead of just on the currently selected line. --- nvim/after/plugin/inlay.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nvim/after/plugin/inlay.lua b/nvim/after/plugin/inlay.lua index 6110499..562d58c 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 = true, -}) \ No newline at end of file + only_current_line = false, +})