Skip to content

Commit

Permalink
Fixed documentation for lsp_signature plugin (#454)
Browse files Browse the repository at this point in the history
Co-authored-by: ggolda <[email protected]>
  • Loading branch information
Salmondx and ggolda authored May 1, 2024
1 parent 84812b0 commit 8a22fb0
Showing 1 changed file with 18 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -628,12 +628,25 @@ end

**hint when you type**

Add to plugins section:
```lua
{
"ray-x/lsp_signature.nvim",
event = "BufRead",
config = function() require"lsp_signature".on_attach() end,
},
{
"ray-x/lsp_signature.nvim",
config = function()
require"lsp_signature".setup({
--
})
end,
},
```

And after activate plugin anywhere in config.lua:
```lua
lvim.lsp.on_attach_callback = function(client, bufnr)
--
require"lsp_signature".on_attach()
--
end
```

### [symbols-outline.nvim](https://github.com/simrat39/symbols-outline.nvim)
Expand Down

0 comments on commit 8a22fb0

Please sign in to comment.