noib3 / nvim-completion

:zap: An async autocompletion framework for Neovim
MIT License
503 stars 13 forks source link

Where is documentation and demo? #21

Open theaungmyatmoe opened 1 year ago

theaungmyatmoe commented 1 year ago

The title say it 👻

marvindore commented 1 year ago

Hello thank you for creating nvim_completion it seems very interesting.

I too am looking for some instructions to use this plugin.

I am currently teaching myself Rust so I am lacking in Rust specific knowledge. Are there instructions on how to get this plugin to work?

I forked the repo and loaded it using Packer.nvim but after running my configuration file it says cannot find module nvim_completion. Any setup steps to get this running is appreciated. Below is my config.

use { '~/home/nvim-completion', branch = 'master' }

require('nvim_completion').setup { sources = { lipsum = { enable = function(_buf) return true end }, lsp = { enable = true }, }, }