We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
This page contains ways to configure your favorite completion plugin to work with nim.nvim.
nim.nvim
If you have successfully configured the plugin of your choice to work with nim.nvim, please share it here with everyone :)
ncm2/ncm2
Authored by: @alaviss
Tested by: @mfiano
Add the following snippets to your configuration file
autocmd User Ncm2Plugin call ncm2#register_source({ \ 'name': 'nim.nvim', \ 'priority': 9, \ 'scope': ['nim'], \ 'mark': 'nim', \ 'on_complete': {ctx -> nim#suggest#sug#GetAllCandidates({start, candidates -> ncm2#complete(ctx, start, candidates)})} \})