Go to file
hrsh7th f12408bdb5
Merge pull request #11 from ppwwyyxx/patch-1
Enable for both lua and vim
2023-04-14 16:50:03 +09:00
after/plugin Initial commit 2021-08-18 01:10:57 +09:00
lua/cmp_nvim_lua Enable for both lua and vim 2023-04-14 00:46:58 -07:00
README.md By default, starting `_` method should be excluded. 2023-01-06 00:18:49 +09:00

README.md

cmp-nvim-lua

nvim-cmp source for neovim Lua API.

Setup

require'cmp'.setup {
  sources = {
    { name = 'nvim_lua' }
  }
}

Options

include_deprecated (boolean: default false)

Specify should includes deprecated things or not.

What is this source?

This source will complete neovim's Lua runtime API such vim.lsp.*.

You can get the vim.lsp.util.* API with this source.