mirror of
https://github.com/kristoferssolo/SoloVim.git
synced 2025-10-21 20:10:41 +00:00
13 lines
427 B
Lua
13 lines
427 B
Lua
return {
|
|
"MysticalDevil/inlay-hints.nvim",
|
|
event = "LspAttach",
|
|
dependencies = { "neovim/nvim-lspconfig" },
|
|
keys = {
|
|
{ "<leader>oi", vim.cmd.InlayHintsToggle, desc = "Toggle InlayHints" },
|
|
},
|
|
opts = {
|
|
commands = { enable = true }, -- Enable InlayHints commands, include `InlayHintsToggle`, `InlayHintsEnable` and `InlayHintsDisable`
|
|
autocmd = { enable = true }, -- Enable the inlay hints on `LspAttach` event
|
|
},
|
|
}
|