From 0aa80f9874eda5a49fcc0976b3d0650992bb24cd Mon Sep 17 00:00:00 2001 From: Tony Grosinger Date: Mon, 15 Jul 2024 09:21:16 -0700 Subject: [PATCH] Show function parameter hints while typing --- nvim/init.lua | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/nvim/init.lua b/nvim/init.lua index 80e6b17..9b3e28e 100644 --- a/nvim/init.lua +++ b/nvim/init.lua @@ -763,6 +763,20 @@ require('lazy').setup({ end, }, + { + 'ray-x/lsp_signature.nvim', + event = 'VeryLazy', + opts = { + hint_inline = function() + return true + end, + hint_prefix = '', + }, + config = function(_, opts) + require('lsp_signature').setup(opts) + end, + }, + { -- Set the colorscheme. -- If you want to see what colorschemes are already installed, you can use `:Telescope colorscheme`.