mirror of
https://github.com/ivuorinen/astronvim_config.git
synced 2026-01-26 11:24:07 +00:00
12 lines
374 B
Lua
12 lines
374 B
Lua
return function(client, bufnr)
|
|
if client.server_capabilities.inlayHintProvider then
|
|
local inlayhints_avail, inlayhints = pcall(require, "lsp-inlayhints")
|
|
if inlayhints_avail then
|
|
inlayhints.on_attach(client, bufnr)
|
|
vim.keymap.set("n", "<leader>uH",
|
|
function() inlayhints.toggle() end,
|
|
{ desc = "Toggle inlay hints" })
|
|
end
|
|
end
|
|
end
|