From bbb96b6aa4992972ffbc9b87e1ace53d64589c7c Mon Sep 17 00:00:00 2001 From: Seymur Bagirov Date: Mon, 27 May 2024 22:53:21 +0400 Subject: [PATCH] enable inlay-hints --- nvim/lua/themystery/plugins/lsp.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/nvim/lua/themystery/plugins/lsp.lua b/nvim/lua/themystery/plugins/lsp.lua index c64b377..2baa936 100644 --- a/nvim/lua/themystery/plugins/lsp.lua +++ b/nvim/lua/themystery/plugins/lsp.lua @@ -125,6 +125,7 @@ return { lsp.on_attach(function(client, bufnr) local opts = { buffer = bufnr, remap = false } lsp.default_keymaps({ buffer = bufnr }) + vim.lsp.inlay_hint.enable(true) if client.server_capabilities.documentSymbolProvider then navic.attach(client, bufnr) end