From 04c1f542c94f3a997e4b9dd0fee5aa3790b303e4 Mon Sep 17 00:00:00 2001 From: Einherjar Date: Wed, 20 Sep 2023 12:06:28 -0300 Subject: [PATCH] feat(lsp): add `opts` as well just in case --- lua/plugins/lsp.lua | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lua/plugins/lsp.lua b/lua/plugins/lsp.lua index cfad5b3..7c26990 100644 --- a/lua/plugins/lsp.lua +++ b/lua/plugins/lsp.lua @@ -53,6 +53,9 @@ return { config = true, }, }, + opts = function(_, opts) + opts.inlay_hints.enabled = true + end, config = function() -- IMPORTANT: make sure to setup neodev BEFORE lspconfig require("neodev").setup()