Skip to content

Commit

Permalink
Fixed documentation for lsp_signature plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
ggolda committed Apr 26, 2024
1 parent 84812b0 commit b997ff9
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 b997ff9

Please sign in to comment.