An open API service indexing awesome lists of open source software.

https://github.com/hrsh7th/cmp-nvim-lua

nvim-cmp source for nvim lua
https://github.com/hrsh7th/cmp-nvim-lua

nvim-cmp

Last synced: 6 months ago
JSON representation

nvim-cmp source for nvim lua

Awesome Lists containing this project

README

          

# cmp-nvim-lua

nvim-cmp source for neovim Lua API.

# Setup

```lua
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.