Add better movement and LSP-related help

This commit is contained in:
Levente Krizsán 2024-09-02 22:28:22 +02:00
parent 3ed9bfaee3
commit e7a9bf5949
5 changed files with 142 additions and 0 deletions

View file

@ -7,5 +7,10 @@ return {
},
config = function(_, opts)
require('lsp_signature').setup(opts)
vim.keymap.set('n', '<leader>cph', function()
-- NOTE: For now, have to close it manually
require('lsp_signature').toggle_float_win()
end, { noremap = true, silent = true, desc = '[C]ode [P]arameter [H]elp' })
end,
}