Neovim plugin that displays LSP-based function signatures at the bottom of the screen when the cursor is idle (like Emacs eldoc).
- Shows current function signature using LSP when the cursor is idle
- Highlight active parameter
- Colors are customizable
With vim-plug:
Plug 'sj2tpgk/nvim-eldoc'
lua require("nvim-eldoc").setup()
set updatetime=700 " Show signature after 700ms cursor idle
hi link Eldoc Normal " Highlight for eldoc
hi link EldocCur Identifier " Highlight for currently focused parameterFor other plugin managers, please consult their documentations.
