diff options
| author | Rob <rcsfletcher@protonmail.com> | 2025-02-18 00:12:06 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-02-17 19:12:06 -0500 |
| commit | e360bbfe47693978552e939b54e1ec4f6378bc17 (patch) | |
| tree | 5be9c0ec73d63d7e8d9cea4a5012d6cdae48244f | |
| parent | 70cc32baa97ae7fad09cc4e17b269d2accac3a91 (diff) | |
| download | dots-e360bbfe47693978552e939b54e1ec4f6378bc17.tar.gz | |
feat: add basic function signature help (#1358)
* feat: add basic function signature help
* Update init.lua
Co-authored-by: makeworld <25111343+makew0rld@users.noreply.github.com>
---------
Co-authored-by: makeworld <25111343+makew0rld@users.noreply.github.com>
| -rw-r--r-- | nvim/init.lua | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/nvim/init.lua b/nvim/init.lua index b57a4b9..de34808 100644 --- a/nvim/init.lua +++ b/nvim/init.lua @@ -786,6 +786,8 @@ require('lazy').setup({ -- into multiple repos for maintenance purposes. 'hrsh7th/cmp-nvim-lsp', 'hrsh7th/cmp-path', + 'hrsh7th/cmp-path', + 'htsh7th/cmp-nvim-lsp-signature-help', }, config = function() -- See `:help cmp` @@ -862,6 +864,7 @@ require('lazy').setup({ { name = 'nvim_lsp' }, { name = 'luasnip' }, { name = 'path' }, + { name = 'nvim_lsp_signature_help' }, }, } end, |